Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
PIM
Akregator
Commits
15b4c727
Commit
15b4c727
authored
Sep 29, 2020
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/subscription/subscriptionlistjobs.cpp
src/subscription/subscriptionlistjobs.cpp
+2
-1
No files found.
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
Markdown
is supported
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