summaryrefslogtreecommitdiff
path: root/plugins/shotwell-publishing/PicasaPublishing.vala
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2017-02-03 14:19:34 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2017-02-03 14:19:34 +0100
commit1591cbba009ca2537ea7a41a0c25722a68b1a647 (patch)
tree22275360dc0f592db8bfc0df5167b8380f3f52af /plugins/shotwell-publishing/PicasaPublishing.vala
parentdf7e4c149ba97ebcd37fadffc053e32526a99741 (diff)
parente69c1b746d63bf794316669471474ab57c8cd40a (diff)
Merge tag 'upstream/0.25.4'
Upstream version 0.25.4
Diffstat (limited to 'plugins/shotwell-publishing/PicasaPublishing.vala')
-rw-r--r--plugins/shotwell-publishing/PicasaPublishing.vala6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/shotwell-publishing/PicasaPublishing.vala b/plugins/shotwell-publishing/PicasaPublishing.vala
index 621ae12..976ba42 100644
--- a/plugins/shotwell-publishing/PicasaPublishing.vala
+++ b/plugins/shotwell-publishing/PicasaPublishing.vala
@@ -67,7 +67,7 @@ public class PicasaPublisher : Publishing.RESTSupport.GooglePublisher {
public PicasaPublisher(Spit.Publishing.Service service,
Spit.Publishing.PluginHost host) {
- base(service, host, "http://picasaweb.google.com/data/");
+ base(service, host, "https://picasaweb.google.com/data/");
this.publishing_parameters = new PublishingParameters();
load_parameters_from_configuration_system(publishing_parameters);
@@ -473,7 +473,7 @@ internal class Album {
internal class AlbumDirectoryTransaction :
Publishing.RESTSupport.GooglePublisher.AuthenticatedTransaction {
- private const string ENDPOINT_URL = "http://picasaweb.google.com/data/feed/api/user/" +
+ private const string ENDPOINT_URL = "https://picasaweb.google.com/data/feed/api/user/" +
"default";
public AlbumDirectoryTransaction(Publishing.RESTSupport.GoogleSession session) {
@@ -491,7 +491,7 @@ internal class AlbumDirectoryTransaction :
private class AlbumCreationTransaction :
Publishing.RESTSupport.GooglePublisher.AuthenticatedTransaction {
- private const string ENDPOINT_URL = "http://picasaweb.google.com/data/feed/api/user/" +
+ private const string ENDPOINT_URL = "https://picasaweb.google.com/data/feed/api/user/" +
"default";
private const string ALBUM_ENTRY_TEMPLATE = "<?xml version='1.0' encoding='utf-8'?><entry xmlns='http://www.w3.org/2005/Atom' xmlns:gphoto='http://schemas.google.com/photos/2007'><title type='text'>%s</title><gphoto:access>%s</gphoto:access><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/photos/2007#album'></category></entry>";