diff --git a/README.md b/README.md index cf3d9ff..c36a67a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@
-**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
+
## Support
diff --git a/backend/routes/api.js b/backend/routes/api.js
index dba74aa..49d145d 100644
--- a/backend/routes/api.js
+++ b/backend/routes/api.js
@@ -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)
{
diff --git a/screenshots/Activity.PNG b/screenshots/Activity.PNG
index 970474e..081e57b 100644
Binary files a/screenshots/Activity.PNG and b/screenshots/Activity.PNG differ
diff --git a/screenshots/Home.PNG b/screenshots/Home.PNG
index 4fc4558..d7adf10 100644
Binary files a/screenshots/Home.PNG and b/screenshots/Home.PNG differ
diff --git a/screenshots/Libraries.PNG b/screenshots/Libraries.PNG
index dd07d61..f8f5a76 100644
Binary files a/screenshots/Libraries.PNG and b/screenshots/Libraries.PNG differ
diff --git a/screenshots/Users.PNG b/screenshots/Users.PNG
index 1461557..99528e9 100644
Binary files a/screenshots/Users.PNG and b/screenshots/Users.PNG differ
diff --git a/screenshots/settings.PNG b/screenshots/settings.PNG
new file mode 100644
index 0000000..56f6ea9
Binary files /dev/null and b/screenshots/settings.PNG differ
diff --git a/screenshots/stats.PNG b/screenshots/stats.PNG
index 30ab907..e0ce031 100644
Binary files a/screenshots/stats.PNG and b/screenshots/stats.PNG differ
diff --git a/src/pages/components/library/recently-added.js b/src/pages/components/library/recently-added.js
index 9935b36..86ad1b3 100644
--- a/src/pages/components/library/recently-added.js
+++ b/src/pages/components/library/recently-added.js
@@ -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) {
diff --git a/src/pages/components/settings/apiKeys.js b/src/pages/components/settings/apiKeys.js
index 4f5ceed..e7f2d5c 100644
--- a/src/pages/components/settings/apiKeys.js
+++ b/src/pages/components/settings/apiKeys.js
@@ -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 = () => {