Update models Messages

This commit is contained in:
Artemy
2025-06-22 11:45:25 +07:00
parent c9aad0c466
commit a6e8ba1a65
13 changed files with 794 additions and 6 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ public class LocalStorageService : IStorageService
public async Task<Stream> LoadAsync(string url)
{
var filePath = Path.Combine(_storagePath, url); // url уже включает yyyy/MM
var filePath = Path.Combine(_storagePath, url);
if (!File.Exists(filePath))
throw new FileNotFoundException("File not found.", filePath);