mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-13 21:24:58 +08:00
13 lines
440 B
Text
13 lines
440 B
Text
|
import AutoloadImagesStore from './autoload-images-store';
|
||
|
import {MessageViewExtension} from 'nylas-exports';
|
||
|
|
||
|
export default class AutoloadImagesExtension extends MessageViewExtension {
|
||
|
static formatMessageBody = ({message})=> {
|
||
|
if (AutoloadImagesStore.shouldBlockImagesIn(message)) {
|
||
|
message.body = message.body.replace(AutoloadImagesStore.ImagesRegexp, (match, prefix)=> {
|
||
|
return `${prefix}#`;
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
}
|