We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8eeb848 commit 9707ad7Copy full SHA for 9707ad7
src/model/image-tag.js
@@ -51,7 +51,7 @@ class ImageTag {
51
facebook,
52
} = ImageTag.imageSuffixes;
53
54
- const [major, minor] = version.split('.');
+ const [major, minor] = version.split('.').map((digit) => Number(digit));
55
// @see: https://docs.unity3d.com/ScriptReference/BuildTarget.html
56
switch (platform) {
57
case Platform.types.StandaloneOSX:
0 commit comments