Skip to content

Commit ba8695e

Browse files
Fixed escaping issue that would only catch first double-quote
1 parent 1d7c93a commit ba8695e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/js/pluginRepo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function pluginFetchWrapperNonBlocking(target, action, targetItem) {
7474
}
7575

7676
function formatModalContent(text) {
77-
text = text.replace('"', "");
77+
text = text.replace(/"/g, "");
7878
var splitText = text.split("...");
7979
var newText = "";
8080
for (let i = 0; i < splitText.length; i++) {

0 commit comments

Comments
 (0)