We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4130a72 commit 4265aa6Copy full SHA for 4265aa6
packages/powersync/lib/src/user_agent/user_agent_native.dart
@@ -10,7 +10,7 @@ String powerSyncUserAgent() {
10
}
11
// Ideally we'd get an OS version as well, but that's a little complex.
12
// Platform.operatingSystemVersion is very verbose.
13
- return 'powersync-dart/$libraryVersion ($dart; ${Platform.operatingSystem})';
+ return 'powersync-dart/$libraryVersion $dart ${Platform.operatingSystem}';
14
15
16
Map<String, String> userAgentHeaders() {
packages/powersync/lib/src/user_agent/user_agent_web.dart
@@ -1,7 +1,7 @@
1
import 'package:powersync/src/version.dart';
2
3
String powerSyncUserAgent() {
4
- return 'powersync-dart/$libraryVersion (flutter-web)';
+ return 'powersync-dart/$libraryVersion Dart (flutter-web)';
5
6
7
0 commit comments