ConfigReader: use suffix() instead of completeSuffix()

Using completeSuffix breaks for names like org.kde.dolphin.desktop
This commit is contained in:
Albert S. 2020-09-01 21:50:24 +02:00
parent d6ec7a7e1c
commit 5b99d764f0
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2019 Albert S. <mail at quitesimple dot org>
* Copyright (c) 2018-2020 Albert S. <mail at quitesimple dot org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -185,7 +185,7 @@ QVector<EntryConfig> ConfigReader::readConfig()
QFileInfo info(path);
if(info.isFile())
{
QString suffix = info.completeSuffix();
QString suffix = info.suffix();
if(suffix == "desktop")
{
result.append(readFromDesktopFile(path));