Add stopped by logout sync error (#2894)

Co-authored-by: yangheran <heran.yang@seafile.com>
This commit is contained in:
feiniks 2025-03-12 14:38:14 +08:00 committed by GitHub
parent 33e302ed36
commit b863cc1109
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 19 additions and 1 deletions

View File

@ -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;

View File

@ -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 *

View File

@ -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