[gthumb] photobucket: use the identifier in the url
- From: Paolo Bacchilega <paobac src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gthumb] photobucket: use the identifier in the url
- Date: Tue, 3 Jan 2017 19:05:37 +0000 (UTC)
commit 26616a05f493fc1ab03537ddebcbf09dee38be6d
Author: Paolo Bacchilega <paobac src gnome org>
Date: Fri Dec 30 16:39:10 2016 +0100
photobucket: use the identifier in the url
extensions/photobucket/photobucket-service.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/extensions/photobucket/photobucket-service.c b/extensions/photobucket/photobucket-service.c
index 2a6cee1..48d8900 100644
--- a/extensions/photobucket/photobucket-service.c
+++ b/extensions/photobucket/photobucket-service.c
@@ -431,12 +431,11 @@ photobucket_service_create_album (PhotobucketService *self,
url = g_strconcat ("http://api.photobucket.com/album/", identifier, NULL);
oauth_service_add_signature (OAUTH_SERVICE (self), "POST", url, data_set);
- g_free (identifier);
g_free (url);
account = web_service_get_current_account (WEB_SERVICE (self));
- url = g_strconcat ("http://", PHOTOBUCKET_ACCOUNT (account)->subdomain, "/album/", parent_album,
NULL);
+ url = g_strconcat ("http://", PHOTOBUCKET_ACCOUNT (account)->subdomain, "/album/", identifier, NULL);
msg = soup_form_request_new_from_hash ("POST", url, data_set);
_web_service_send_message (WEB_SERVICE (self),
msg,
@@ -448,6 +447,7 @@ photobucket_service_create_album (PhotobucketService *self,
create_album_data);
g_free (url);
+ g_free (identifier);
g_hash_table_destroy (data_set);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]