Fixes download endpoint.

This commit is contained in:
benbierens 2023-11-23 13:32:58 +01:00
parent 06ff7c9760
commit 6bd7098cfe
No known key found for this signature in database
GPG Key ID: FE44815D96D0A1AA
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ namespace CodexPlugin
public Stream DownloadFile(string contentId)
{
return Http().HttpGetStream("data/" + contentId);
return Http().HttpGetStream("data/" + contentId + "/network");
}
public CodexLocalDataResponse[] LocalFiles()