A photo manager for VRChat.

Fixed broken legacy named photos

phaz.uk 89bdd25b d38313ef

verified
Changed files
+7 -2
src
Components
Structs
+2 -1
changelog
··· 111 111 - Fixed scroll to top button not animating out 112 112 - Fixed scroll to top button being ontop of filters menu 113 113 - Fixed photo ordering 114 - - Fixed automatic updates 114 + - Fixed automatic updates 115 + - Fixed broken legacy named photos
+5 -1
src/Components/Structs/Photo.ts
··· 62 62 this.date.setMinutes(parseInt(splitTimeString[1])); 63 63 this.date.setSeconds(parseInt(splitTimeString[2])); 64 64 65 - let resSplit = split[3].split('x'); 65 + let resSplit; 66 + if(this.legacy) 67 + resSplit = split[0].split('x') 68 + else 69 + resSplit = split[3].split('x') 66 70 67 71 let width = parseInt(resSplit[0]); 68 72 let height = parseInt(resSplit[1]);