We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05c1272 commit b735153Copy full SHA for b735153
HttpApiUploadPlugin/Storage.cs
@@ -82,11 +82,11 @@ public static string GetDataURL(byte[] data, string shotName)
82
83
public static string GetUrlAsImgTag(string url)
84
{
85
- return "<img src\"=" + url + "\">";
+ return "<img src=\"" + url + "\">";
86
}
87
public static string GetUrlAsImgTagWithWidth(string url)
88
89
- return "<img src\"=" + url + "\" width=\"\">";
+ return "<img src=\"" + url + "\" width=\"\">";
90
91
92
public override ISettingsControl CreateSettingsControl() => new SettingsControl(this);
0 commit comments