We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64c2caf commit 8277203Copy full SHA for 8277203
1 file changed
TelegramDownloader/Pages/Partials/impl/LocalFileManagerImpl.razor
@@ -102,10 +102,10 @@
102
private const int MobileBreakpoint = 1920; // Custom breakpoint for mobile file manager
103
104
// 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";
+ private string FileOperationsUrl => "/api/file/FileOperations";
+ private string UploadUrl => "/api/file/Upload";
+ private string DownloadUrl => "/api/file/Download";
+ private string GetImageUrl => "/api/file/GetImage";
109
110
111
public List<ToolBarItemModel> Items = new List<ToolBarItemModel>(){
0 commit comments