summaryrefslogtreecommitdiff
path: root/Services/ImageResizer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Services/ImageResizer.cs')
-rw-r--r--Services/ImageResizer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Services/ImageResizer.cs b/Services/ImageResizer.cs
index 8e09424..c9aeafa 100644
--- a/Services/ImageResizer.cs
+++ b/Services/ImageResizer.cs
@@ -8,7 +8,7 @@ namespace MyDarling.Services
{
using var input = File.OpenRead(inputPath);
using var inputStream = new SKManagedStream(input);
- var outputPath = Path.GetDirectoryName(inputPath) + "\\" +
+ var outputPath = Path.GetDirectoryName(inputPath) + "/" +
Path.GetFileNameWithoutExtension(inputPath) + "_thumb.jpg";
WriteResized(inputStream, 600, outputPath);
}