Take default color length into account when calculating module text

length
This commit is contained in:
2025-12-22 14:28:51 +02:00
parent 3b7cb5e4e2
commit fabc1adbf7
+1 -1
View File
@@ -107,7 +107,7 @@ func run() {
} }
// Continue if text length is 0 // Continue if text length is 0
if len(textNoColor) == 0 { if len(textNoColor)-len(colorMap[0]) == 0 {
continue continue
} }