mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 02:37:03 -07:00
BUG-1864: After uploading to imgur, greenshot does not copy link to clipboard.
This commit is contained in:
parent
4f9d6eb865
commit
750d4ee4f9
1 changed files with 2 additions and 2 deletions
|
@ -203,11 +203,11 @@ namespace GreenshotImgurPlugin {
|
|||
{
|
||||
uploadURL = imgurInfo.Original;
|
||||
}
|
||||
if (string.IsNullOrEmpty(uploadURL) && config.CopyLinkToClipboard)
|
||||
if (!string.IsNullOrEmpty(uploadURL) && config.CopyLinkToClipboard)
|
||||
{
|
||||
try
|
||||
{
|
||||
ClipboardHelper.SetClipboardData(imgurInfo.Original);
|
||||
ClipboardHelper.SetClipboardData(uploadURL);
|
||||
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue