From 3aa4d4965eae867340bc704bfe79c6e15347e194 Mon Sep 17 00:00:00 2001 From: Jon Mills <40585882+TheFlyingBadger@users.noreply.github.com> Date: Mon, 23 Sep 2019 15:35:18 +0800 Subject: [PATCH] Return remote name when 'case-insensitive match' (#670) If there is a case-insensitive match error, also return the remote name from the response --- src/sync.d | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sync.d b/src/sync.d index e5b864d0..c775f3d9 100644 --- a/src/sync.d +++ b/src/sync.d @@ -2367,6 +2367,7 @@ final class SyncEngine // They are the "same" name wise but different in case sensitivity log.error("ERROR: Current directory has a 'case-insensitive match' to an existing directory on OneDrive"); log.error("ERROR: To resolve, rename this local directory: ", absolutePath(path)); + log.error("ERROR: Remote OneDrive directory: ", response["name"].str); log.log("Skipping: ", absolutePath(path)); return; }