Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
Plasma Workspace
Commits
09410018
Verified
Commit
09410018
authored
Apr 29, 2021
by
Alexander Lohnau
💬
Browse files
bookmarksrunner: Choose less confusing folder name for cache
BUG: 436347
FIXED-IN: 5.22
parent
4d83c159
Changes
1
Hide whitespace changes
Inline
Side-by-side
runners/bookmarks/faviconfromblob.cpp
View file @
09410018
...
...
@@ -73,7 +73,7 @@ FaviconFromBlob *FaviconFromBlob::falkon(const QString &profileDirectory, QObjec
const
QString
dbPath
=
profileDirectory
+
QStringLiteral
(
"/browsedata.db"
);
FetchSqlite
*
fetchSqlite
=
new
FetchSqlite
(
dbPath
,
parent
);
const
QString
faviconQuery
=
QStringLiteral
(
"SELECT icon FROM icons WHERE url = :url LIMIT 1;"
);
return
new
FaviconFromBlob
(
faviconQuery
,
faviconQuery
,
QStringLiteral
(
"icon"
),
fetchSqlite
,
parent
);
return
new
FaviconFromBlob
(
QStringLiteral
(
"falkon-default"
)
,
faviconQuery
,
QStringLiteral
(
"icon"
),
fetchSqlite
,
parent
);
}
FaviconFromBlob
::
FaviconFromBlob
(
const
QString
&
profileName
,
const
QString
&
query
,
const
QString
&
blobColumn
,
FetchSqlite
*
fetchSqlite
,
QObject
*
parent
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment