diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/storage/video_database/mod.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/storage/video_database/mod.rs b/src/storage/video_database/mod.rs index 2a52bb7..0251eb1 100644 --- a/src/storage/video_database/mod.rs +++ b/src/storage/video_database/mod.rs @@ -107,11 +107,13 @@ pub enum VideoStatus { } impl VideoStatus { - pub const ALL: [Self; 6] = [ + pub const ALL: &'static [Self; 6] = &[ Self::Pick, + // VideoStatus::Watch, VideoStatus::Cached, VideoStatus::Watched, + // VideoStatus::Drop, VideoStatus::Dropped, ]; |