mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-02 18:14:47 +02:00
Update:Show error icon on player cover when local media progress fails to sync & remove sync failure toast
This commit is contained in:
parent
b51f65d2a4
commit
5f6a1ef7e9
8 changed files with 58 additions and 15 deletions
|
@ -5,6 +5,12 @@ const DownloadStatus = {
|
|||
FAILED: 3
|
||||
}
|
||||
|
||||
const SyncStatus = {
|
||||
UNSET: 0,
|
||||
SUCCESS: 1,
|
||||
FAILED: 2
|
||||
}
|
||||
|
||||
const CoverDestination = {
|
||||
METADATA: 0,
|
||||
AUDIOBOOK: 1
|
||||
|
@ -31,6 +37,7 @@ const PlayerState = {
|
|||
|
||||
const Constants = {
|
||||
DownloadStatus,
|
||||
SyncStatus,
|
||||
CoverDestination,
|
||||
BookCoverAspectRatio,
|
||||
PlayMethod,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue