You've already forked AstralRinth
forked from didirus/AstralRinth
Fix issues (#158)
* Fix accept all button simply not working * Switched privacy settings icons to a shield Fixed auth changing the theme and consent Fixed server error on log in / out * Fixed scrolling issue on mobile * Fixed GPDR concerns
This commit is contained in:
@@ -10,8 +10,6 @@ function isAnalyticsOn(ctx) {
|
||||
cookies = document.cookie;
|
||||
}
|
||||
|
||||
if(!cookies) return true;
|
||||
|
||||
let processed = {}
|
||||
cookies.split(';').forEach((e) => {
|
||||
let val = e.trim().split('=');
|
||||
|
||||
@@ -9,9 +9,6 @@ function isPersonalizedAdsOn(ctx) {
|
||||
// Rely on the client
|
||||
cookies = document.cookie;
|
||||
}
|
||||
|
||||
if(!cookies) return true;
|
||||
|
||||
let processed = {}
|
||||
cookies.split(';').forEach((e) => {
|
||||
let val = e.trim().split('=')
|
||||
|
||||
Reference in New Issue
Block a user