mirror of
https://github.com/haiwen/seafile.git
synced 2025-04-04 00:01:32 +08:00
Add stopped by logout sync error (#2894)
Co-authored-by: yangheran <heran.yang@seafile.com>
This commit is contained in:
parent
33e302ed36
commit
b863cc1109
@ -380,6 +380,18 @@ seafile_get_repo_sync_task (const char *repo_id, GError **error)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (!repo->token) {
|
||||
SeafileSyncTask *s_task;
|
||||
s_task = g_object_new (SEAFILE_TYPE_SYNC_TASK,
|
||||
"force_upload", FALSE,
|
||||
"state", "error",
|
||||
"error", SYNC_ERROR_ID_STOPPED_BY_LOGOUT,
|
||||
"repo_id", repo_id,
|
||||
NULL);
|
||||
|
||||
return (GObject *)s_task;
|
||||
}
|
||||
|
||||
SyncInfo *info = seaf_sync_manager_get_sync_info (seaf->sync_mgr, repo_id);
|
||||
if (!info || !info->current_task)
|
||||
return NULL;
|
||||
|
@ -199,6 +199,11 @@ static SyncErrorInfo sync_error_info_tbl[] = {
|
||||
SYNC_ERROR_LEVEL_FILE,
|
||||
"Path has character case conflict with existing file or folder. Will not be downloaded"
|
||||
},
|
||||
{
|
||||
SYNC_ERROR_ID_STOPPED_BY_LOGOUT,
|
||||
SYNC_ERROR_LEVEL_REPO,
|
||||
"Syncing is stopped by logout. Please re-sync the library if needed"
|
||||
},
|
||||
};
|
||||
|
||||
const char *
|
||||
|
@ -67,6 +67,7 @@
|
||||
#define SYNC_ERROR_ID_CHECKOUT_FILE 35
|
||||
#define SYNC_ERROR_ID_BLOCK_MISSING 36
|
||||
#define SYNC_ERROR_ID_CASE_CONFLICT 37
|
||||
#define N_SYNC_ERROR_ID 38
|
||||
#define SYNC_ERROR_ID_STOPPED_BY_LOGOUT 38
|
||||
#define N_SYNC_ERROR_ID 39
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user