mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-22 22:33:34 -07:00
Fix WebUI crash due to missing tags from config
Tags can be missing from config but set inside .fastresume. May happen due to corrupted/deleted config. Closes #11906. PR #16739. Original PR #16711.
This commit is contained in:
parent
c621cae43b
commit
c1b38221d2
1 changed files with 6 additions and 0 deletions
|
@ -361,6 +361,12 @@ window.addEvent('load', function() {
|
|||
let added = false;
|
||||
for (let i = 0; i < tags.length; ++i) {
|
||||
const tagHash = genHash(tags[i].trim());
|
||||
if (!tagList[tagHash]) { // This should not happen
|
||||
tagList[tagHash] = {
|
||||
name: tags,
|
||||
torrents: []
|
||||
};
|
||||
}
|
||||
if (!Object.contains(tagList[tagHash].torrents, torrent['hash'])) {
|
||||
added = true;
|
||||
tagList[tagHash].torrents.push(torrent['hash']);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue