You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Qdirstat categorizes *.gz as a compressed file and a tar.gz as a compressed archive when looking at the mime categories. However, in practice, these files are both categorized as compressed files. The same problem also occurs with user-defined Mime types.
Minimal reproducible example:
mkdir test
cd test
echo "test" > test.tar.gz
echo "test" > test.gz
qdirstat .
The text was updated successfully, but these errors were encountered:
It did find the category for the longer one (.tar.gz), but then it continued looking, resulting in the shortest matching one (.gz). Now stopping at the longest hit.
Qdirstat categorizes *.gz as a compressed file and a tar.gz as a compressed archive when looking at the mime categories. However, in practice, these files are both categorized as compressed files. The same problem also occurs with user-defined Mime types.
Minimal reproducible example:
The text was updated successfully, but these errors were encountered: