From 16f56354c06ebe12ffa1c1f709a382797da8b6e0 Mon Sep 17 00:00:00 2001 From: Bryan Oltman Date: Tue, 17 Jun 2025 13:30:57 -0400 Subject: [PATCH] fix: use correct key for app_id --- engine/src/flutter/shell/common/shorebird/shorebird.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/shell/common/shorebird/shorebird.cc b/engine/src/flutter/shell/common/shorebird/shorebird.cc index 130f4cc3bae08..2d9f73ed33320 100644 --- a/engine/src/flutter/shell/common/shorebird/shorebird.cc +++ b/engine/src/flutter/shell/common/shorebird/shorebird.cc @@ -111,7 +111,7 @@ bool ConfigureShorebird(const ShorebirdConfigArgs& args, auto shorebird_updater_dir_name = "shorebird_updater"; // Parse app id from shorebird.yaml - std::string app_id = GetValueFromYaml(args.shorebird_yaml, "appid"); + std::string app_id = GetValueFromYaml(args.shorebird_yaml, "app_id"); if (app_id.empty()) { FML_LOG(ERROR) << "Shorebird updater: appid not found in shorebird.yaml"; return false;