diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-02-19 14:29:03 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-02-19 14:29:03 +0100 |
| commit | 41e8ff64585b7a3b77acd027d95e3e7f651d9e0e (patch) | |
| tree | 7226e1ae6d6dfd7e111ff0364889089ca5b07cd9 /common | |
| parent | dc4fa1995c9a341fe3027774c52a0760a00c6387 (diff) | |
| download | jellything-41e8ff64585b7a3b77acd027d95e3e7f651d9e0e.tar jellything-41e8ff64585b7a3b77acd027d95e3e7f651d9e0e.tar.bz2 jellything-41e8ff64585b7a3b77acd027d95e3e7f651d9e0e.tar.zst | |
migrate musicbrainz importer
Diffstat (limited to 'common')
| -rw-r--r-- | common/object/src/lib.rs | 1 | ||||
| -rw-r--r-- | common/src/node.rs | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/common/object/src/lib.rs b/common/object/src/lib.rs index b197932..7d0c203 100644 --- a/common/object/src/lib.rs +++ b/common/object/src/lib.rs @@ -286,6 +286,7 @@ impl<'a> Object<'a> { ObjectBuffer(buf) } + #[must_use] pub fn update( &self, diff --git a/common/src/node.rs b/common/src/node.rs index 612155f..5e52a4c 100644 --- a/common/src/node.rs +++ b/common/src/node.rs @@ -87,8 +87,8 @@ fields! { IDENT_TMDB_PERSON: u64 = b"tmpe"; IDENT_TVDB: &str = b"tvdb"; IDENT_OMDB: &str = b"omdb"; - IDENT_VGMDB_ARTIST: &str = b"vgar"; - + IDENT_VGMDB_ARTIST: u64 = b"vgar"; + IDENT_WIKIDATA: &str = b"wkdt"; } enums! { |