diff --git a/app/Support/ShortFileNamer.php b/app/Support/ShortFileNamer.php index 02bd4e4..675148e 100644 --- a/app/Support/ShortFileNamer.php +++ b/app/Support/ShortFileNamer.php @@ -20,9 +20,7 @@ class ShortFileNamer extends FileNamer */ public function conversionFileName(string $fileName, Conversion $conversion): string { - $fileName = pathinfo($fileName, PATHINFO_FILENAME); - - return "{$fileName}-{$conversion->getName()}"; + return $conversion->getName(); } public function responsiveFileName(string $fileName): string