mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
Fix tag name escaping on upload
This commit is contained in:
@ -320,7 +320,7 @@ class PostUploadView extends events.EventTarget {
|
||||
uploadable.tags = [];
|
||||
if (this._commonTagsInputNode) {
|
||||
var tags = this._commonTagsInputNode.value.split(' ');
|
||||
tags = tags.filter(t => t != "");
|
||||
tags = tags.filter(t => t != "").map(t => t.replace('\\', ''));
|
||||
uploadable.tags = uploadable.tags.concat(tags);
|
||||
}
|
||||
uploadable.relations = [];
|
||||
|
Reference in New Issue
Block a user