mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
Revert "OS (Linux): prioritize prettyName over name"
This reverts commit ecd69370ab.
This commit is contained in:
+3
-3
@@ -12,10 +12,10 @@
|
||||
static void buildOutputDefault(const FFOSResult* os, FFstrbuf* result)
|
||||
{
|
||||
//Create the basic output
|
||||
if(os->prettyName.length > 0)
|
||||
ffStrbufAppend(result, &os->prettyName);
|
||||
else if(os->name.length > 0)
|
||||
if(os->name.length > 0)
|
||||
ffStrbufAppend(result, &os->name);
|
||||
else if(os->prettyName.length > 0)
|
||||
ffStrbufAppend(result, &os->prettyName);
|
||||
else if(os->id.length > 0)
|
||||
ffStrbufAppend(result, &os->id);
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user