diff --git a/ChangeLog.md b/ChangeLog.md index f15a156e..b8aa5618 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,7 @@ * Reload page if Safari throws a security error * Handle import of ships with incorrectly-sized slots * Add 'Extreme' blueprint roll: best beneficial and worst detrimental outcome (in place of 'Average' roll) + * Display information about Microsoft browser issues when an import fails #2.2.14 * Ensure that jitter is shown correctly when the result of a special effect diff --git a/src/app/pages/ErrorDetails.jsx b/src/app/pages/ErrorDetails.jsx index c315a87e..507f5b94 100644 --- a/src/app/pages/ErrorDetails.jsx +++ b/src/app/pages/ErrorDetails.jsx @@ -39,10 +39,16 @@ export default class ErrorDetails extends React.Component { ; } + const importerror = ed && ed.scriptUrl && ed.scriptUrl.indexOf('/import') != -1; + return

Jameson, we have a problem..

{error.message}

+
+ {importerror ?
If you are attempting to import a ship from EDDI or EDMC and are seeing a 'Z_BUF_ERROR' it means that the URL has not been provided correctly. This is a common problem when using Microsoft Internet Explorer or Microsoft Edge, and you should use another browser instead.
: null } +
Please note that this site uses Google Analytics to track performance and usage. If you are blocking cookies, for example using Ghostery, please disable blocking for this site and try again.
+
{content}
; }