[keel] Fix for Ox change

This commit is contained in:
Gary Talent 2024-05-02 22:21:04 -05:00
parent fda1280d29
commit 9caf7099b6

View File

@ -29,7 +29,7 @@ static ox::Error pathToInode(
return {};
}
if (beginsWith(path, "uuid://")) {
auto const uuid = substr<ox::StringView>(path, 7);
auto const uuid = ox::substr(path, 7);
oxReturnError(keel::uuidToPath(ctx, uuid).moveTo(path));
}
oxRequire(s, dest.stat(path));