You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mails encoded with ISO8859 doesn't display correctly, i've got this javascript error:
angular-1.3.8.js:11594 ReferenceError: ISO88591_MAP_ENCODED is not defined
at maybeInitIso88591Maps (strutil.js:392)
at convertIso88591BytesToUnicodeCodePoints (strutil.js:487)
at convertBytesToUnicodeCodePoints (strutil.js:727)
at unescapeFromMime (strutil.js:985)
at Scope.$scope.tryDecodeMime (controllers.js:161)
at $parseFunctionCall (angular-1.3.8.js:12332)
at Object.expressionInputWatch (angular-1.3.8.js:12735)
at Scope.$digest (angular-1.3.8.js:14217)
at Scope.$apply (angular-1.3.8.js:14488)
at EventSource.<anonymous> (controllers.js:142)
I think some js dependencies are missing (iso88591_map.js and sjis_map.js), in /assets/js/strutil.js:
// Requires: sjis_map.js should be loaded.
function maybeInitSjisMaps() {
maybeInitMaps(SJIS_MAP_ENCODED, SJIS_TO_UNICODE, UNICODE_TO_SJIS);
}
var ISO88591_TO_UNICODE = {}
var UNICODE_TO_ISO88591 = {}
// Requires: iso88591_map.js should be loaded.
function maybeInitIso88591Maps() {
maybeInitMaps(ISO88591_MAP_ENCODED, ISO88591_TO_UNICODE,
UNICODE_TO_ISO88591);
}
The text was updated successfully, but these errors were encountered:
@arnou not sure if that is related to this problem, if it still happens after the next release could you open a new issue and include MailHog server logs
I'm still getting this exact issue when using the latest release. I'm using the linux binaries, I'm not being able to find the commited changes on the deployed js files. It looks like the build doesn't get those js files included on the layout.html template. I'm not being able to provide a fix because I don't know the platform.
Mails encoded with ISO8859 doesn't display correctly, i've got this javascript error:
I think some js dependencies are missing (iso88591_map.js and sjis_map.js), in /assets/js/strutil.js:
The text was updated successfully, but these errors were encountered: