From ac0d486b8415c2d01f48df8283aa18af74f13e3f Mon Sep 17 00:00:00 2001 From: sppo-ethx-f66c root user Date: Wed, 26 Sep 2018 13:56:48 -0500 Subject: [PATCH] Expand concept of "latest" to include unstable/RC if the user has requested to see unstable/RC releases --- src/Common/LinuxKernel.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 09d2500c..9ef1e7c4 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -632,7 +632,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // skip unstable - if (kern.is_unstable){ + if (hide_unstable && kern.is_unstable){ continue; }