Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Kamm <kamm@incasoftware.de>2015-04-24 12:32:47 +0300
committerChristian Kamm <kamm@incasoftware.de>2015-05-07 10:21:52 +0300
commit73e2254a808c85afa54f2d54497b120b36e122fc (patch)
tree66d7f424f5a36ee797090715fb973e9e7bdbb7f5 /src/gui/accountstate.h
parent352c2957b282bee7802b37576a84fd139d5ac781 (diff)
AccountState: Treat *any* 503 as a temporary error. #3113
Diffstat (limited to 'src/gui/accountstate.h')
-rw-r--r--src/gui/accountstate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/accountstate.h b/src/gui/accountstate.h
index 8da575be4..c21b25ead 100644
--- a/src/gui/accountstate.h
+++ b/src/gui/accountstate.h
@@ -67,9 +67,9 @@ public:
/// The account is successfully talking to the server.
Connected,
- /// The account is talking to the server, but the server is in
- /// maintenance mode.
- ServerMaintenance,
+ /// There's a temporary problem with talking to the server,
+ /// don't bother the user too much and try again.
+ ServiceUnavailable,
/// Could not communicate with the server for some reason.
/// We assume this may resolve itself over time and will try
@@ -100,7 +100,7 @@ public:
void setSignedOut(bool signedOut);
bool isConnected() const;
- bool isConnectedOrMaintenance() const;
+ bool isConnectedOrTemporarilyUnavailable() const;
QuotaInfo *quotaInfo();