Dependency+Logging cleanup
Fixed dependency errors Removed leftover logging commands from testing Updated screenshots
@@ -1,6 +1,6 @@
|
||||
<p align="center">
|
||||
|
||||
**Jellystat** is a free and open source Statistics App for Jellyfin!
|
||||
**Jellystat** is a free and open source Statistics App for Jellyfin! (This project is still in development - expect some weirdness)
|
||||
|
||||
## Current Features
|
||||
|
||||
@@ -40,6 +40,7 @@ https://hub.docker.com/r/cyfershepard/jellystat
|
||||
<img src="./screenshots/Users.PNG">
|
||||
<img src="./screenshots/Activity.PNG">
|
||||
<img src="./screenshots/Libraries.PNG">
|
||||
<img src="./screenshots/settings.PNG.PNG">
|
||||
|
||||
## Support
|
||||
|
||||
|
||||
@@ -267,10 +267,7 @@ router.get("/keys", async (req,res) => {
|
||||
});
|
||||
|
||||
router.delete("/keys", async (req,res) => {
|
||||
console.log('Delete API Key');
|
||||
console.log(req);
|
||||
console.log(res);
|
||||
const { key } = req.body;
|
||||
const { key } = req.body;
|
||||
|
||||
if(!key)
|
||||
{
|
||||
|
||||
|
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 517 KiB After Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 455 KiB After Width: | Height: | Size: 525 KiB |
|
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 59 KiB |
BIN
screenshots/settings.PNG
Normal file
|
After Width: | Height: | Size: 49 KiB |
|
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 128 KiB |
@@ -48,7 +48,7 @@ function RecentlyAdded(props) {
|
||||
|
||||
const intervalId = setInterval(fetchData, 60000 * 5);
|
||||
return () => clearInterval(intervalId);
|
||||
}, [data, props.LibraryId]);
|
||||
}, [data, props.LibraryId,token]);
|
||||
|
||||
|
||||
if (!data) {
|
||||
|
||||
@@ -96,8 +96,6 @@ useEffect(() => {
|
||||
},
|
||||
});
|
||||
setKeys(apiKeyData.data);
|
||||
console.log(apiKeyData);
|
||||
console.log('KeyData');
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
}
|
||||
@@ -107,7 +105,7 @@ useEffect(() => {
|
||||
|
||||
const intervalId = setInterval(fetchData, 1000 * 5);
|
||||
return () => clearInterval(intervalId);
|
||||
}, [token]);
|
||||
}, []);
|
||||
|
||||
|
||||
const handleNextPageClick = () => {
|
||||
|
||||