Get profile image import working

This commit is contained in:
TheXamlGuy
2024-06-28 21:58:44 +01:00
parent 2495eb8722
commit 9ae022b46f
3 changed files with 17 additions and 15 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ public class ProfileImageHandler(IFileProvider fileProvider,
{
if (files.FirstOrDefault() is string file)
{
return await imageProvider.Get(file, 100, 100, true);
return await imageProvider.Get(file, 200, 200, true);
}
}