aboutsummaryrefslogtreecommitdiff
path: root/generalresearch/grliq/models/forensic_data.py
diff options
context:
space:
mode:
Diffstat (limited to 'generalresearch/grliq/models/forensic_data.py')
-rw-r--r--generalresearch/grliq/models/forensic_data.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/generalresearch/grliq/models/forensic_data.py b/generalresearch/grliq/models/forensic_data.py
index 84bb31b..fe26a45 100644
--- a/generalresearch/grliq/models/forensic_data.py
+++ b/generalresearch/grliq/models/forensic_data.py
@@ -534,7 +534,9 @@ class GrlIqData(BaseModel):
]
if self.useragent.os.family in {OSFamily.IOS, OSFamily.MAC_OSX}:
fp_cols.extend(["screen_width", "screen_height"])
- if self.useragent.os.family not in {OSFamily.CHROME_OS, OSFamily.ANDROID}:
+ if self.useragent.os.family not in {OSFamily.CHROME_OS, OSFamily.ANDROID, OSFamily.WINDOWS}:
+ # On certain system this is the actual value (to the byte) which results in it
+ # changing frequently.
fp_cols.append("storage_estimate_quota")
fp_cols.sort()
return fp_cols