mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Image file names with dots were showing incorrectly in composer markdown (#8465)
When uploading an image file with dots in the filename we were splitting the string on dots and getting the last of the split items as the extension-less filename. However this did not work with filenames that have dots. We now just remove the extension using substr.
This commit is contained in:
@@ -7,8 +7,7 @@ function isGUID(value) {
|
||||
}
|
||||
|
||||
function imageNameFromFileName(fileName) {
|
||||
const split = fileName.split(".");
|
||||
let name = split[split.length - 2];
|
||||
let name = fileName.substr(0, fileName.lastIndexOf("."));
|
||||
|
||||
if (isAppleDevice() && isGUID(name)) {
|
||||
name = I18n.t("upload_selector.default_image_alt_text");
|
||||
|
||||
Reference in New Issue
Block a user