Skip to content

Commit 39c6d86

Browse files
committed
Fixed the series image upload
1 parent c5e4ddf commit 39c6d86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Inshapardaz.Domain/Helpers/FilePathHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public static class FilePathHelper
1616
// series
1717
public static string GetSeriesImageFileName(string fileName) => $"image{Path.GetExtension(fileName)}";
1818

19-
public static string GetSeriesImagePath(int seriesId, string fileName) => $"/series/{seriesId}/{fileName}";
19+
public static string GetSeriesImagePath(int seriesId, string fileName) => $"series/{seriesId}/{fileName}";
2020

2121
// book image
2222
public static string GetBookImageFileName(string fileName) => $"title{Path.GetExtension(fileName)}";

0 commit comments

Comments
 (0)