Skip to content

Commit b735153

Browse files
committed
Fix quotes in copied HTML tags
1 parent 05c1272 commit b735153

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

HttpApiUploadPlugin/Storage.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ public static string GetDataURL(byte[] data, string shotName)
8282

8383
public static string GetUrlAsImgTag(string url)
8484
{
85-
return "<img src\"=" + url + "\">";
85+
return "<img src=\"" + url + "\">";
8686
}
8787
public static string GetUrlAsImgTagWithWidth(string url)
8888
{
89-
return "<img src\"=" + url + "\" width=\"\">";
89+
return "<img src=\"" + url + "\" width=\"\">";
9090
}
9191

9292
public override ISettingsControl CreateSettingsControl() => new SettingsControl(this);

0 commit comments

Comments
 (0)