diff options
| author | stuppie | 2026-03-19 14:12:20 -0600 |
|---|---|---|
| committer | stuppie | 2026-03-19 14:12:20 -0600 |
| commit | d084c2396fa008ff084dc02705f30b8e7b7b6b8c (patch) | |
| tree | a2c39086b12dcc9c0292f65fa9bc34592a9c07d7 | |
| parent | 435e93817a10dc2c06fa29ce0cef36f2758299ba (diff) | |
| download | generalresearch-d084c2396fa008ff084dc02705f30b8e7b7b6b8c.tar.gz generalresearch-d084c2396fa008ff084dc02705f30b8e7b7b6b8c.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.py | 1 |
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 |
