(TMP) (SHIFT) Recovery: always allow downgrading

Change-Id: Ifb5e305ac2cbb0f72ea4600f243608e36d701510
Signed-off-by: Alexander Martinz <amartinz@shiftphones.com>
diff --git a/recovery.cpp b/recovery.cpp
index 74f6527..4369f40 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -185,12 +185,16 @@
 }
 
 bool ask_to_continue_downgrade(Device* device) {
+#if 0
   if (get_build_type() == "user") {
     return false;
   } else {
+#endif
     device->GetUI()->SetProgressType(RecoveryUI::EMPTY);
     return yes_no(device, "This package will downgrade your system", "Install anyway?");
+#if 0
   }
+#endif
 }
 
 static bool ask_to_wipe_data(Device* device) {