Skip to content

Commit

Permalink
Merge pull request #157 from kuhnroyal/fix/country-code
Browse files Browse the repository at this point in the history
Fix country code case
  • Loading branch information
TesteurManiak authored Jun 18, 2024
2 parents 362721c + 06353cb commit cb765ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/matomo_action.dart
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ class MatomoAction {
final ua = tracker.userAgent;
final dims = dimensions;
final locale = PlatformDispatcher.instance.locale;
final country = locale.countryCode;
final country = locale.countryCode?.toLowerCase();
final nV = newVisit;
final p = ping;
final cont = content;
Expand Down

0 comments on commit cb765ec

Please sign in to comment.