diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-02-19 18:17:32 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-02-19 18:17:32 +0100 |
| commit | 3a81f654a9f49649fb6755b6e35649f0102a9572 (patch) | |
| tree | 3b6be37eac969fea2b6dee0b718cc77efe2230a8 /common/src/node.rs | |
| parent | 962309ddcb033e0032258d6badebb90415a34e3d (diff) | |
| download | jellything-3a81f654a9f49649fb6755b6e35649f0102a9572.tar jellything-3a81f654a9f49649fb6755b6e35649f0102a9572.tar.bz2 jellything-3a81f654a9f49649fb6755b6e35649f0102a9572.tar.zst | |
all idents as string; move value type; add cow to queries
Diffstat (limited to 'common/src/node.rs')
| -rw-r--r-- | common/src/node.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/src/node.rs b/common/src/node.rs index 5e52a4c..b02f8e8 100644 --- a/common/src/node.rs +++ b/common/src/node.rs @@ -79,15 +79,15 @@ fields! { IDENT_TRAKT_SHOW: &str = b"trsh"; IDENT_TRAKT_SEASON: &str = b"trse"; IDENT_TRAKT_EPISODE: &str = b"trep"; - IDENT_TRAKT_PERSON: u64 = b"trpe"; + IDENT_TRAKT_PERSON: &str = b"trpe"; IDENT_IMDB: &str = b"imdb"; IDENT_IMDB_PERSON: &str = b"impe"; IDENT_TMDB_SERIES: &str = b"tmse"; IDENT_TMDB_MOVIE: &str = b"tmmv"; - IDENT_TMDB_PERSON: u64 = b"tmpe"; + IDENT_TMDB_PERSON: &str = b"tmpe"; IDENT_TVDB: &str = b"tvdb"; IDENT_OMDB: &str = b"omdb"; - IDENT_VGMDB_ARTIST: u64 = b"vgar"; + IDENT_VGMDB_ARTIST: &str = b"vgar"; IDENT_WIKIDATA: &str = b"wkdt"; } |