diff options
Diffstat (limited to 'src/command/FileCommands.cxx')
-rw-r--r-- | src/command/FileCommands.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/FileCommands.cxx b/src/command/FileCommands.cxx index 0b0421c3e..cfd5e3926 100644 --- a/src/command/FileCommands.cxx +++ b/src/command/FileCommands.cxx @@ -125,7 +125,7 @@ handle_read_comments(Client &client, gcc_unused int argc, char *argv[]) return print_error(client, error); } else if (uri_has_scheme(uri)) { return read_stream_comments(client, uri); - } else if (*uri != '/') { + } else if (!PathTraitsUTF8::IsAbsolute(uri)) { #ifdef ENABLE_DATABASE path_fs = map_uri_fs(uri); if (path_fs.IsNull()) { |