Skip to content

Commit 8277203

Browse files
committed
fix: fix relative path
1 parent 64c2caf commit 8277203

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

TelegramDownloader/Pages/Partials/impl/LocalFileManagerImpl.razor

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@
102102
private const int MobileBreakpoint = 1920; // Custom breakpoint for mobile file manager
103103
104104
// Use relative URLs to work correctly with reverse proxies (HTTP/HTTPS)
105-
private string FileOperationsUrl => "api/file/FileOperations";
106-
private string UploadUrl => "api/file/Upload";
107-
private string DownloadUrl => "api/file/Download";
108-
private string GetImageUrl => "api/file/GetImage";
105+
private string FileOperationsUrl => "/api/file/FileOperations";
106+
private string UploadUrl => "/api/file/Upload";
107+
private string DownloadUrl => "/api/file/Download";
108+
private string GetImageUrl => "/api/file/GetImage";
109109

110110

111111
public List<ToolBarItemModel> Items = new List<ToolBarItemModel>(){

0 commit comments

Comments
 (0)