about summary refs log tree commit diff stats
path: root/src/storage/video_database/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage/video_database/mod.rs')
-rw-r--r--src/storage/video_database/mod.rs4
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,
     ];