feat: prefix chip-style web links (social media) with the service name

This commit is contained in:
ThetaDev 2024-04-12 12:33:36 +02:00
parent 89cda7db59
commit 6c41ef2fb2
No known key found for this signature in database
GPG key ID: E319D3C5148D65B6
4 changed files with 1383 additions and 360 deletions

View file

@ -2519,7 +2519,7 @@ async fn music_new_videos(rp: RustyPipe) {
assert!(!video.name.is_empty());
assert!(!video.cover.is_empty(), "got no cover");
if let Some(view_count) = video.view_count {
assert_gte(view_count, 1000, "views");
assert_gte(view_count, 500, "views");
} else {
// Podcast episode: shows duration instead of view count
assert!(video.duration.is_some(), "no view count or duration");