Skip to content

Commit 1a3c9e0

Browse files
committed
watched: WatchedStatus: Fix HOLD value
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 ;().
1 parent 95debb0 commit 1a3c9e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/watched.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const (
2121
FINISHED WatchedStatus = "FINISHED"
2222
WATCHING WatchedStatus = "WATCHING"
2323
PLANNED WatchedStatus = "PLANNED"
24-
HOLD WatchedStatus = "ONHOLD"
24+
HOLD WatchedStatus = "HOLD"
2525
DROPPED WatchedStatus = "DROPPED"
2626
)
2727

0 commit comments

Comments
 (0)