tangled
alpha
login
or
join now
mia.omg.lol
/
flashback
3
fork
atom
A Wrapped / Replay like for teal.fm and rocksky.app (currently on hiatus)
3
fork
atom
overview
issues
pulls
pipelines
case for old teal records
mia.omg.lol
3 months ago
7501b3d0
d05ce46c
verified
This commit was signed with the committer's
known signature
.
mia.omg.lol
SSH Key Fingerprint:
SHA256:eb+NhC0QEl+XKRuFP/97oH6LEz0TXTKPXGDIAI5y7CQ=
+6
-1
1 changed file
expand all
collapse all
unified
split
src
ingest
scrobbles.rs
+6
-1
src/ingest/scrobbles.rs
···
27
27
.artists
28
28
.as_ref()
29
29
.and_then(|artists| artists.first())
30
30
-
.map(|v| v.artist_name.as_str());
30
30
+
.map(|v| v.artist_name.as_str())
31
31
+
.or(scrobble
32
32
+
.artist_names
33
33
+
.as_ref()
34
34
+
.and_then(|an| an.first())
35
35
+
.map(|v| v.as_str()));
31
36
32
37
let find = FindMbzData {
33
38
track_name: scrobble.track_name.as_str(),