feat: support removing watch status when null
A user can choose to remove a show from being in their media list completely, by setting the watch status to null
This commit is contained in:
@@ -16,7 +16,7 @@ export function setWatchStatus(
|
||||
env: Env,
|
||||
deviceId: string,
|
||||
titleId: number,
|
||||
watchStatus: (typeof WatchStatusValues)[number],
|
||||
watchStatus: (typeof WatchStatusValues)[number] | null,
|
||||
) {
|
||||
let dbAction;
|
||||
const isSavingTitle = watchStatus === "CURRENT";
|
||||
|
||||
Reference in New Issue
Block a user