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