diff options
Diffstat (limited to 'server/tools')
-rw-r--r-- | server/tools/tools_util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/tools/tools_util.c b/server/tools/tools_util.c index 79f73ac6..62013994 100644 --- a/server/tools/tools_util.c +++ b/server/tools/tools_util.c @@ -78,7 +78,8 @@ enum id_domain get_domain_type(struct tools_ctx *ctx, if (strcasecmp(dom->provider, "local") == 0) { return ID_IN_LOCAL; - } else if (is_domain_local_legacy(ctx, dom) == 0) { + } else if (strcasecmp(dom->provider, "files") == 0 || + is_domain_local_legacy(ctx, dom) == 0) { return ID_IN_LEGACY_LOCAL; } |