We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24a48c1 commit 942c583Copy full SHA for 942c583
CMakeLists.txt
@@ -7,7 +7,7 @@ project(fastfetch
7
8
#e.g. +1
9
#This allows to track builds between versions, without GitHub creating a new release
10
-set(PROJECT_VERSION_EXTRA "+2")
+set(PROJECT_VERSION_EXTRA "+3")
11
12
include(GNUInstallDirs)
13
src/modules/song.c
@@ -87,7 +87,8 @@ void ffPrintSong(FFinstance* instance)
87
fputs(" - ", stdout);
88
}
89
90
- if(media->album.length > 0)
+ //Some sites (e.g. reddit) expose their url as album. We don't want to show that
91
+ if(media->album.length > 0 && !ffStrbufStartsWithIgnCaseS(&media->album, "http"))
92
{
93
ffStrbufWriteTo(&media->album, stdout);
94
0 commit comments