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

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-07-16Remove request to config for userVisibleURL.allexzander
Signed-off-by: allexzander <blackslayer4@gmail.com>
2020-12-15ConnectionValidator: increase timeout to 57s #7456Christian Kamm
When the gui thread blocks for several seconds it's possible for the ConnectionValidator to timeout and decide that the account is unreachable. It will then terminate all sync runs. Increasing the timeout makes this less likely to happen. The tradeoff is that real disconnects will not be detected as quickly. This does not address the root cause but makes the symptom less likely to appear.
2020-02-14Add UserInfo class and fetch quota via API instead of PropfindJobMichael Schuster
The PropfindJob quota includes the size of shares and thus leads to confusion in regard of the real space available, as shown in the UI. This commit aims to streamline the behaviour with the Android and iOS apps, which also utilize the API. Details: - Refactor the QuotaInfo class into UserInfo - Use JsonApiJob (ocs/v1.php/cloud/user) instead of PropfindJob - Let ConnectionValidator use the new UserInfo class to fetch the user and the avatar image (to avoid code duplication) - Allow updating the avatar image upon AccountSettings visibility, using UserInfo's quota fetching Signed-off-by: Michael Schuster <michael@schuster.ms>
2018-11-11GUI: run clang-tidy modernize-use-nullptrJ-P Nurmi
2018-05-31ConnectionValidator::Status use Q_ENUMOlivier Goffart
So no need to have a manual conversion to QString This is only used in debug message anyway.
2018-05-31Move ClientProxy and ConnecitonValidator to guiOlivier Goffart
They are using the ConfigFile and are used to control when to sync rather than for the sync itself