Update scripts

This commit is contained in:
freearhey 2025-02-27 20:55:39 +03:00
parent 5d52197f9c
commit 3fd1a03eea
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')
}
}