This commit is contained in:
btzr-io 2020-08-24 15:45:08 -05:00 committed by Sean Yesmunt
parent bd34a720a2
commit 353c57a568

View file

@ -257,16 +257,16 @@ function PublishFile(props: Props) {
const isVideo = contentType && contentType[0] === 'video'; const isVideo = contentType && contentType[0] === 'video';
const isMp4 = contentType && contentType[1] === 'mp4'; const isMp4 = contentType && contentType[1] === 'mp4';
let isMarkdownText = false; let isTextPost = false;
if (contentType) { if (contentType && contentType[0] === 'text') {
isMarkdownText = contentType[0] === 'text'; isTextPost = contentType[1] === 'plain' || contentType[1] === 'markdown';
setCurrentFileType(contentType); setCurrentFileType(contentType);
} else if (file.name) { } else if (file.name) {
// If user's machine is missign a valid content type registration // If user's machine is missign a valid content type registration
// for markdown content: text/markdown, file extension will be used instead // for markdown content: text/markdown, file extension will be used instead
const extension = file.name.split('.').pop(); const extension = file.name.split('.').pop();
isMarkdownText = MARKDOWN_FILE_EXTENSIONS.includes(extension); isTextPost = MARKDOWN_FILE_EXTENSIONS.includes(extension);
} }
if (isVideo) { if (isVideo) {
@ -288,7 +288,7 @@ function PublishFile(props: Props) {
updateFileInfo(0, file.size, isVideo); updateFileInfo(0, file.size, isVideo);
} }
if (isMarkdownText) { if (isTextPost) {
// Create reader // Create reader
const reader = new FileReader(); const reader = new FileReader();
// Handler for file reader // Handler for file reader