From ae09d6c9e6c4aa4fcbf7205111e4f93cf039195d Mon Sep 17 00:00:00 2001 From: Flavio Date: Wed, 22 Oct 2014 14:11:45 +0200 Subject: [PATCH] Fixed bug with channel thumbs location --- src/ytuser.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ytuser.cpp b/src/ytuser.cpp index 29f851d..f51bd18 100644 --- a/src/ytuser.cpp +++ b/src/ytuser.cpp @@ -144,11 +144,11 @@ void YTUser::loadThumbnail() { const QString & YTUser::getThumbnailDir() { static const QString thumbDir = #if QT_VERSION >= 0x050000 - QStandardPaths::writableLocation(QStandardPaths::DataLocation); -#else - QDesktopServices::storageLocation(QDesktopServices::DataLocation); -#endif - + "/channels/"; + QStandardPaths::writableLocation(QStandardPaths::DataLocation) + #else + QDesktopServices::storageLocation(QDesktopServices::DataLocation) + #endif + + "/channels/"; return thumbDir; } -- 2.39.2