A photo manager for VRChat.

klkjlkjlkjkljlkjlkj

Changed files
+2 -3
src
Components
src-tauri
+1 -2
src-tauri/src/util/handle_uri_proto.rs
··· 27 27 // becomes a potential issue if the frontend gets modified or there's an issue with tauri. 28 28 29 29 let path = uri.path().split_at(1).1; 30 - dbg!(path); 31 - 30 + 32 31 let file = fs::File::open(path); 33 32 34 33 match file {
+1 -1
src/Components/PhotoViewer.tsx
··· 262 262 if(!photoPath) 263 263 photoPath = await invoke('get_user_photos_path') + '/'; 264 264 265 - imageViewer.src = 'http://photo.localhost/' + (photoPath + props.currentPhotoView().path).split('\\').join('/') + "?full"; 265 + imageViewer.src = 'photo://' + (photoPath + props.currentPhotoView().path).split('\\').join('/') + "?full"; 266 266 imageViewer.crossOrigin = 'anonymous'; 267 267 })(); 268 268