fix(browser): simplify upload path result type

This commit is contained in:
Peter Steinberger
2026-05-30 23:23:46 +01:00
parent 5a16f18c76
commit 2f743941ea

View File

@@ -156,7 +156,7 @@ async function resolveDirectInboundMediaPath(params: {
inboundMediaDir: string;
requestedPath: string;
strict: boolean;
}): Promise<ExistingPathsResult | StrictExistingPathsResult> {
}): Promise<ExistingPathsResult> {
const inboundPathsResult = params.strict
? await resolveStrictExistingPathsWithinRoot({
rootDir: params.inboundMediaDir,