From 7be2f3a6ceb5c77b60197e078c3f024d2fc7f500 Mon Sep 17 00:00:00 2001 From: quaaantumdev <94001411+quaaantumdev@users.noreply.github.com> Date: Sat, 6 Aug 2022 15:39:40 +0200 Subject: [PATCH] fix: Scope.clone incorrectly accesses tags --- dart/lib/src/scope.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dart/lib/src/scope.dart b/dart/lib/src/scope.dart index b62632f52..e4a9c96e6 100644 --- a/dart/lib/src/scope.dart +++ b/dart/lib/src/scope.dart @@ -416,7 +416,7 @@ class Scope { final tags = List.from(_tags.keys); for (final tag in tags) { - final value = tags[tag]; + final value = _tags[tag]; if (value != null) { clone._setTagSync(tag, value); }