[libhttpseverywhere: 14/21] updater: fixed an error string



commit c57189fb2f7be12e2294ae512b588a6aa9a881de
Author: grindhold <grindhold gmx net>
Date:   Mon Oct 31 20:29:06 2016 +0100

    updater: fixed an error string
    
    there was a missing negation which rendered the error message
    a bit confusing

 src/update.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/update.vala b/src/update.vala
index eae0a10..769bbf5 100644
--- a/src/update.vala
+++ b/src/update.vala
@@ -131,7 +131,7 @@ namespace HTTPSEverywhere {
                         throw (IOError) e;
                     if (e is UpdateError.NO_UPDATE_AVAILABLE)
                         throw (UpdateError) e;
-                    throw new UpdateError.CANT_REACH_SERVER("Could request update from '%s'", UPDATE_URL);
+                    throw new UpdateError.CANT_REACH_SERVER("Couldn't request update from '%s'", UPDATE_URL);
                 }
             } catch (FileError e) {}
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]