Update scripts

This commit is contained in:
freearhey
2025-02-27 20:55:39 +03:00
parent 86eda24dcc
commit aa215b3fcb
5 changed files with 109 additions and 69 deletions

View File

@@ -27,6 +27,6 @@ export class IssueData {
getArray(key: string): string[] {
const deleteSymbol = '~'
return this._data.get(key) === deleteSymbol ? [] : this._data.get(key).split(';')
return this._data.get(key) === deleteSymbol ? [] : this._data.get(key).split('\r\n')
}
}