FbxLoader base64 image parsing error
@@ -261,6 +261,13 @@
if ( typeof content === 'string' ) {
+ // ASCII format sometimes adds an extra character to the end of the content string
+ if ( content.slice( - 1 ) !== '=' ) {
+
+ content = content.slice( 0, - 1 );
+ }
return 'data:' + type + ';base64,' + content;
} else {