Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/services/LibraryService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ export class LibraryService {
lastPlayDateTimestamp: itemTemp.last_play_date,
type: itemTemp.type,
thumbnail: itemTemp.thumbnail,
url: '',
// null, not '': iOS decodes this as URL? and an empty string fails
// decoding, permanently wedging the upload retry loop
url: null,
synced: itemTemp.synced,
source_path: itemTemp.source_path,
uuid: itemTemp.uuid,
Expand Down
Loading