mirror of
https://github.com/greenshot/greenshot
synced 2025-08-20 21:43:24 -07:00
Fix for missing /
This commit is contained in:
parent
56339b629c
commit
3ccc1c0f9f
2 changed files with 11 additions and 6 deletions
|
@ -9,12 +9,17 @@ All details to our tickets can be found here: https://greenshot.atlassian.net
|
|||
|
||||
@DETAILVERSION@
|
||||
|
||||
Bugs Resolved:
|
||||
* BUG-1850: Greenshot stops responding
|
||||
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.
|
||||
|
||||
Workaround:
|
||||
* 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
|
||||
Bugs Resolved:
|
||||
|
||||
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
|
||||
|
|
|
@ -162,7 +162,7 @@ namespace GreenshotImgurPlugin {
|
|||
|
||||
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));
|
||||
|
||||
NetworkHelper.WriteMultipartFormData(webRequest, otherParameters);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue