EntryProvider: Support broken .desktop files that don't start with [Desktop Entry]
This commit is contained in:
parent
89c9cc573e
commit
8a47838d94
@ -30,15 +30,17 @@ EntryConfig EntryProvider::readFromDesktopFile(const QString &path)
|
|||||||
QTextStream stream(&file);
|
QTextStream stream(&file);
|
||||||
// There should be nothing preceding this group in the desktop entry file but possibly one or more comments.
|
// There should be nothing preceding this group in the desktop entry file but possibly one or more comments.
|
||||||
// https://standards.freedesktop.org/desktop-entry-spec/latest/ar01s03.html#group-header
|
// https://standards.freedesktop.org/desktop-entry-spec/latest/ar01s03.html#group-header
|
||||||
QString firstLine;
|
// Ignore that as there some that violate that in the wild
|
||||||
|
const QString startSection = "[Desktop Entry]";
|
||||||
|
QString line;
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
firstLine = stream.readLine().trimmed();
|
line = stream.readLine().trimmed();
|
||||||
} while(!stream.atEnd() && (firstLine.isEmpty() || firstLine[0] == '#'));
|
} while(!stream.atEnd() && line != startSection);
|
||||||
|
|
||||||
if(firstLine != "[Desktop Entry]")
|
if(line != startSection)
|
||||||
{
|
{
|
||||||
throw ConfigFormatException(".desktop file does not start with [Desktop Entry]: " + path.toStdString());
|
throw ConfigFormatException(".desktop file does not contain [Desktop Entry] section: " + path.toStdString());
|
||||||
}
|
}
|
||||||
|
|
||||||
while(!stream.atEnd())
|
while(!stream.atEnd())
|
||||||
|
Loading…
Reference in New Issue
Block a user