mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-08-28 22:08:47 +02: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() {
|
isLocalMatchingUser() {
|
||||||
if (this.isLocalOnly || !this.localLibraryItem || !this.user) return false
|
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
|
* User is currently connected to a server and this local library item has the same connection config id
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue