We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 206d4b7 commit a563c61Copy full SHA for a563c61
dart/lib/src/protocol/contexts.dart
@@ -293,8 +293,7 @@ class Contexts extends MapView<String, dynamic> {
293
Contexts(
294
device: device ?? this.device,
295
operatingSystem: operatingSystem ?? this.operatingSystem,
296
- runtimes: runtimes ??
297
- this[SentryRuntime.listType], // Don't use unmodifiable list here.
+ runtimes: runtimes ?? (this[SentryRuntime.listType] as List<SentryRuntime>?) ?? <SentryRuntime>[],
298
app: app ?? this.app,
299
browser: browser ?? this.browser,
300
gpu: gpu ?? this.gpu,
0 commit comments