Explorar o código

Merge pull request #12362 from looeee/FBXLoader_base64_image_check

FbxLoader base64 image parsing error fix update
Mr.doob %!s(int64=7) %!d(string=hai) anos
pai
achega
754975ff10
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      examples/js/loaders/FBXLoader.js

+ 1 - 1
examples/js/loaders/FBXLoader.js

@@ -262,7 +262,7 @@
 		if ( typeof content === 'string' ) {
 
 			// ASCII format sometimes adds an extra character to the end of the content string
-			if ( content.slice( - 1 ) !== '=' ) {
+			if ( content.slice( - 1 ) === ',' ) {
 
 				content = content.slice( 0, - 1 );