diff --git a/casr-logbook.cabal b/casr-logbook.cabal
--- a/casr-logbook.cabal
+++ b/casr-logbook.cabal
@@ -1,5 +1,5 @@
 name:               casr-logbook
-version:            0.6.11
+version:            0.6.12
 license:            OtherLicense
 license-file:       LICENSE
 author:             Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>
diff --git a/src/Data/Aviation/Casr/Logbook/Reports/FlightTimeReport.hs b/src/Data/Aviation/Casr/Logbook/Reports/FlightTimeReport.hs
--- a/src/Data/Aviation/Casr/Logbook/Reports/FlightTimeReport.hs
+++ b/src/Data/Aviation/Casr/Logbook/Reports/FlightTimeReport.hs
@@ -210,7 +210,7 @@
           Nothing ->
             case preview (command . _ApprovedSolo) fl of
               Just (_, r) ->
-                if isRAInstruction r then mempty else x
+                if isRAInstruction r then x else mempty
               Nothing ->
                 mempty
       instrGA x =
@@ -220,7 +220,7 @@
           Nothing ->
             case preview (command . _ApprovedSolo) fl of
               Just (_, r) ->
-                if isGAInstruction r then mempty else x
+                if isGAInstruction r then x else mempty
               Nothing ->
                 mempty
       instrRAJunior x =
