diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2019-04-28 16:46:41 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2019-04-28 16:46:41 +0200 |
commit | 6d3354ff2e7ce13feeae1b75d94a186d86f82d89 (patch) | |
tree | 2d908584bfb663268004e19a23e02ce6c65034c5 /plugins/shotwell-publishing/shotwell-publishing.vala | |
parent | 6dd5e6966c6ec10d38d4b620a053ae262ac60d86 (diff) | |
parent | 7385922cd37e4ffe65f4af34b2795307a76670c4 (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'plugins/shotwell-publishing/shotwell-publishing.vala')
-rw-r--r-- | plugins/shotwell-publishing/shotwell-publishing.vala | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/shotwell-publishing/shotwell-publishing.vala b/plugins/shotwell-publishing/shotwell-publishing.vala index 3515f5f..52c82ec 100644 --- a/plugins/shotwell-publishing/shotwell-publishing.vala +++ b/plugins/shotwell-publishing/shotwell-publishing.vala @@ -6,7 +6,7 @@ extern const string _VERSION; -// "core services" are: Facebook, Flickr, Picasa Web Albums, Piwigo and YouTube +// "core services" are: Flickr, Google Photos, Piwigo, Tumblr and YouTube private class ShotwellPublishingCoreServices : Object, Spit.Module { private Spit.Pluggable[] pluggables = new Spit.Pluggable[0]; @@ -28,9 +28,9 @@ private class ShotwellPublishingCoreServices : Object, Spit.Module { } #endif -#if HAVE_PICASA - if (authenicators.contains("picasa")) { - pluggables += new PicasaService(resource_directory); +#if HAVE_GOOGLEPHOTOS + if (authenicators.contains("google-photos")) { + pluggables += new Publishing.GooglePhotos.Service(resource_directory); } #endif |