From fa35818b9125489233e697a6f63721cb69f13691 Mon Sep 17 00:00:00 2001 From: guangda Date: Mon, 29 Sep 2025 08:57:24 +0000 Subject: [PATCH] update DealStrideSolution/entry/src/main/ets/utils/CameraServiceThree.ets. Signed-off-by: guangda --- .../entry/src/main/ets/utils/CameraServiceThree.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DealStrideSolution/entry/src/main/ets/utils/CameraServiceThree.ets b/DealStrideSolution/entry/src/main/ets/utils/CameraServiceThree.ets index bc774580..4e351e6a 100644 --- a/DealStrideSolution/entry/src/main/ets/utils/CameraServiceThree.ets +++ b/DealStrideSolution/entry/src/main/ets/utils/CameraServiceThree.ets @@ -160,7 +160,7 @@ class CameraService { previewRotation = this.previewOutput?.getPreviewRotation(previewRotation); AppStorage.set('previewRotation', previewRotation); } catch (error) { - let err = error as BusinessError; + let err: BusinessError = error as BusinessError; hilog.warn(0x000, 'testTag', `setColorMode failed, code=${err.code}, message=${err.message}`); } } -- Gitee