<table><tr><td style="">Zren created this revision.<br />Restricted Application added a project: Plasma.<br />Restricted Application added a subscriber: plasma-devel.<br />Zren requested review of this revision.
</td><a style="text-decoration: none; padding: 4px 8px; margin: 0 8px 8px; float: right; color: #464C5C; font-weight: bold; border-radius: 3px; background-color: #F7F7F9; background-image: linear-gradient(to bottom,#fff,#f1f0f1); display: inline-block; border: 1px solid rgba(71,87,120,.2);" href="https://phabricator.kde.org/D13596">View Revision</a></tr></table><br /><div><strong>REVISION SUMMARY</strong><div><p>We currently read the previous <tt style="background: #ebebeb; font-size: 13px;">m_securityCount</tt> instead of using the current <tt style="background: #ebebeb; font-size: 13px;">securityCount</tt>.</p>

<p>BUG: 392056<br />
FIXED-IN 5.13.1 (or 5.13.2?)<br />
FIXED-IN 5.12.6 (This should be backported right?) <a href="https://github.com/KDE/discover/blame/Plasma/5.12/notifier/DiscoverNotifier.cpp#L82" class="remarkup-link" target="_blank" rel="noreferrer">https://github.com/KDE/discover/blame/Plasma/5.12/notifier/DiscoverNotifier.cpp#L82</a></p>

<p>The bug report is from 5.12.3, and was also reported on reddit today. Both have a screenshot of the bug.<br />
<a href="https://bugs.kde.org/show_bug.cgi?id=392056" class="remarkup-link" target="_blank" rel="noreferrer">https://bugs.kde.org/show_bug.cgi?id=392056</a><br />
<a href="https://www.reddit.com/r/kde/comments/8rzrr6/so_whats_the_logic_behind_updater/" class="remarkup-link" target="_blank" rel="noreferrer">https://www.reddit.com/r/kde/comments/8rzrr6/so_whats_the_logic_behind_updater/</a></p>

<p>We could also start the counter at 0 and add <tt style="background: #ebebeb; font-size: 13px;">securityCount</tt> afterward.</p>

<div class="remarkup-code-block" style="margin: 12px 0;" data-code-lang="text" data-sigil="remarkup-code-block"><pre class="remarkup-code" style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; padding: 12px; margin: 0; background: rgba(71, 87, 120, 0.08);">-    uint count = securityUpdatesCount();
+    uint count = 0;
     foreach(BackendNotifierModule* module, m_backends)
         count += module->updatesCount();
+    count += securityCount;</pre></div></div></div><br /><div><strong>TEST PLAN</strong><div><p>I haven't attempted to compile this or test it. I don't have any security updates atm anyways.<br />
I haven't pushed a bugfix to a <tt style="background: #ebebeb; font-size: 13px;">Plasma/5.__</tt> branch before either. Do I make a separate commit for 5.12, 5.13, and master?</p></div></div><br /><div><strong>REPOSITORY</strong><div><div>R134 Discover Software Store</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D13596">https://phabricator.kde.org/D13596</a></div></div><br /><div><strong>AFFECTED FILES</strong><div><div>notifier/DiscoverNotifier.cpp</div></div></div><br /><div><strong>To: </strong>Zren<br /><strong>Cc: </strong>plasma-devel, ragreen, Pitel, ZrenBot, lesliezhai, ali-mohamed, jensreuterberg, abetts, sebas, apol, mart<br /></div>