Skip to content

Commit

Permalink
watched: WatchedStatus: Fix HOLD value
Browse files Browse the repository at this point in the history
Has always been set as HOLD from frontend apparently, never used this value before on server so must've missed it (until now, i wasted a lot of time ;().
  • Loading branch information
IRHM committed Jun 9, 2024
1 parent 95debb0 commit 1a3c9e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/watched.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const (
FINISHED WatchedStatus = "FINISHED"
WATCHING WatchedStatus = "WATCHING"
PLANNED WatchedStatus = "PLANNED"
HOLD WatchedStatus = "ONHOLD"
HOLD WatchedStatus = "HOLD"
DROPPED WatchedStatus = "DROPPED"
)

Expand Down

0 comments on commit 1a3c9e0

Please sign in to comment.