From b37b123e8eb62c0bc5745cc7b9b4053dc6491e80 Mon Sep 17 00:00:00 2001 From: Robin Krom Date: Sat, 16 Oct 2021 23:06:25 +0200 Subject: [PATCH] Fixed an issue which was introduced by renaming the assemblies, the confluence icon could not be found. --- src/Greenshot.Plugin.Confluence/ConfluenceDestination.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Greenshot.Plugin.Confluence/ConfluenceDestination.cs b/src/Greenshot.Plugin.Confluence/ConfluenceDestination.cs index 7f7a90f62..ddcb66530 100644 --- a/src/Greenshot.Plugin.Confluence/ConfluenceDestination.cs +++ b/src/Greenshot.Plugin.Confluence/ConfluenceDestination.cs @@ -51,7 +51,7 @@ namespace Greenshot.Plugin.Confluence IsInitialized = false; try { - Uri confluenceIconUri = new Uri("/GreenshotConfluencePlugin;component/Images/Confluence.ico", UriKind.Relative); + Uri confluenceIconUri = new Uri("/Greenshot.Plugin.Confluence;component/Images/Confluence.ico", UriKind.Relative); using (Stream iconStream = Application.GetResourceStream(confluenceIconUri)?.Stream) { // TODO: Check what to do with the IImage