We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We used to track Windows versions like this:
int osMajor = Environment.OSVersion.Version.Major; int osMinor = Environment.OSVersion.Version.Minor; string architecture = Environment.Is64BitOperatingSystem ? "; x64" : "; x86"; piwikTracker.SetUserAgent("Mozilla/5.0 (Windows NT " + osMajor + "." + osMinor + architecture + ")");
Could we also set the user agent to Windows 11 in something like:
piwikTracker.SetUserAgent("Mozilla/5.0 (Windows NT 11.0; x64 )");
So we could correctly differ Windows 11 from 10 in Matomo web UI?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We used to track Windows versions like this:
Could we also set the user agent to Windows 11 in something like:
So we could correctly differ Windows 11 from 10 in Matomo web UI?
The text was updated successfully, but these errors were encountered: