aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstuppie2026-03-19 14:12:20 -0600
committerstuppie2026-03-19 14:12:20 -0600
commitd084c2396fa008ff084dc02705f30b8e7b7b6b8c (patch)
treea2c39086b12dcc9c0292f65fa9bc34592a9c07d7
parent435e93817a10dc2c06fa29ce0cef36f2758299ba (diff)
downloadgeneralresearch-3.3.6.tar.gz
generalresearch-3.3.6.zip
sort fingerprint keys to avoid changes to everything in the future (when there are changes to a subset of users)HEADv3.3.6master
-rw-r--r--generalresearch/grliq/models/forensic_data.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/generalresearch/grliq/models/forensic_data.py b/generalresearch/grliq/models/forensic_data.py
index 6852707..84bb31b 100644
--- a/generalresearch/grliq/models/forensic_data.py
+++ b/generalresearch/grliq/models/forensic_data.py
@@ -536,6 +536,7 @@ class GrlIqData(BaseModel):
fp_cols.extend(["screen_width", "screen_height"])
if self.useragent.os.family not in {OSFamily.CHROME_OS, OSFamily.ANDROID}:
fp_cols.append("storage_estimate_quota")
+ fp_cols.sort()
return fp_cols
@cached_property