From 1a97204be3f89721ec2a3bf4666e2dbd1b3e8d0a Mon Sep 17 00:00:00 2001 From: RKrom Date: Wed, 10 Oct 2012 19:01:39 +0000 Subject: [PATCH] Fix for refactoring of the OAuth implementation. git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2136 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4 --- GreenshotPhotobucketPlugin/PhotobucketUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GreenshotPhotobucketPlugin/PhotobucketUtils.cs b/GreenshotPhotobucketPlugin/PhotobucketUtils.cs index 462f3e921..2622c3eb7 100644 --- a/GreenshotPhotobucketPlugin/PhotobucketUtils.cs +++ b/GreenshotPhotobucketPlugin/PhotobucketUtils.cs @@ -97,7 +97,7 @@ namespace GreenshotPhotobucketPlugin { apiUrl = apiUrl.Replace("api.photobucket.com", config.SubDomain); // Add image parameters.Add("uploadfile", new ImageContainer(image, outputSettings, filename)); - responseString = oAuth.MakeRequest(HTTPMethod.POST, apiUrl, parameters, null, null); + responseString = oAuth.MakeRequest(HTTPMethod.POST, apiUrl, parameters, null); } catch (Exception ex) { LOG.Error("Error uploading to Photobucket.", ex); throw ex;