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
PIM
Akregator
Commits
15b4c727
Commit
15b4c727
authored
Sep 29, 2020
by
Laurent Montel
😁
Browse files
Delete folder even if folder id < 0
parent
072566d1
Pipeline
#35898
passed with stage
in 13 minutes and 10 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/subscription/subscriptionlistjobs.cpp
View file @
15b4c727
...
...
@@ -15,6 +15,7 @@
#include <KLocalizedString>
#include <QTimer>
#include <QDebug>
using
namespace
Akregator
;
...
...
@@ -129,7 +130,7 @@ void DeleteSubscriptionJob::start()
void
DeleteSubscriptionJob
::
doDelete
()
{
const
QSharedPointer
<
FeedList
>
feedList
=
m_feedList
.
lock
();
if
(
m_id
>
0
&&
feedList
)
{
if
(
feedList
)
{
delete
feedList
->
findByID
(
m_id
);
}
emitResult
();
...
...
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