Fix for missing /

This commit is contained in:
RKrom 2015-11-07 15:39:41 +01:00
commit 3ccc1c0f9f
2 changed files with 11 additions and 6 deletions

View file

@ -9,12 +9,17 @@ All details to our tickets can be found here: https://greenshot.atlassian.net
@DETAILVERSION@ @DETAILVERSION@
Bugs Resolved: There were some major issues with the non anonymous uploads to Imgur, after contacting Imgur they told us that their old API was deprecated or disabled, unfortunately this was not communicated. Although we are working hard on Greenshot 1.3 we did see a need to fix the imgur uploads, so we moved to their new API as quickly as was possible. This should resolve a lot of tickets that were reported to us.
* BUG-1850: Greenshot stops responding
Workaround: Bugs Resolved:
* BUG-1852: When using Imgur & clipboard destinations, the imgur export Uri overwrites the clipboard image
-> Change the CopyLinkToClipboard flag to false in the greenshot.ini BUG-1850: Greenshot stops responding
BUG-1864: Imgur link wasn't copied to the clipboard
Known bugs:
* BUG-1852: When using the Imgur & clipboard destinations together, the imgur export Uri overwrites the clipboard image
The current workaround -> Change the CopyLinkToClipboard flag to false in the greenshot.ini
1.2.7.2-342a506 RELEASE 1.2.7.2-342a506 RELEASE

View file

@ -162,7 +162,7 @@ namespace GreenshotImgurPlugin {
try try
{ {
var webRequest = OAuth2Helper.CreateOAuth2WebRequest(HTTPMethod.POST, Config.ImgurApi3Url + "upload.xml", oauth2Settings); var webRequest = OAuth2Helper.CreateOAuth2WebRequest(HTTPMethod.POST, Config.ImgurApi3Url + "/upload.xml", oauth2Settings);
otherParameters.Add("image", new SurfaceContainer(surfaceToUpload, outputSettings, filename)); otherParameters.Add("image", new SurfaceContainer(surfaceToUpload, outputSettings, filename));
NetworkHelper.WriteMultipartFormData(webRequest, otherParameters); NetworkHelper.WriteMultipartFormData(webRequest, otherParameters);