mirror of
https://github.com/sudoxnym/audiobookshelf-atv.git
synced 2026-04-14 19:46:30 +00:00
Fix:Downloaded item server user id mismatch alert to support connections with old user id #945
This commit is contained in:
parent
ef4d7ba1bf
commit
0036a19659
1 changed files with 1 additions and 1 deletions
|
|
@ -272,7 +272,7 @@ export default {
|
|||
*/
|
||||
isLocalMatchingUser() {
|
||||
if (this.isLocalOnly || !this.localLibraryItem || !this.user) return false
|
||||
return this.localLibraryItem.serverUserId === this.user.id
|
||||
return this.localLibraryItem.serverUserId === this.user.id || this.localLibraryItem.serverUserId === this.user.oldUserId
|
||||
},
|
||||
/**
|
||||
* User is currently connected to a server and this local library item has the same connection config id
|
||||
|
|
|
|||
Loading…
Reference in a new issue