Merge pull request #948 from trheyi/main

fix: Update client type constant for Android in context management
This commit is contained in:
Max 2025-05-09 12:23:40 +08:00 committed by GitHub
commit 6f615766cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -59,8 +59,8 @@ const (
// ClientTypeWeb is the client type for Web (Default UI)
ClientTypeWeb = "web"
// ClientTypeSDK is the client type for SDK
ClientTypeSDK = "android"
// ClientTypeAndroid is the client type for Android
ClientTypeAndroid = "android"
// ClientTypeIOS is the client type for IOS
ClientTypeIOS = "ios"
@ -82,7 +82,7 @@ const (
var SupportedClientTypes = map[string]bool{
ClientTypeAgent: true,
ClientTypeWeb: true,
ClientTypeSDK: true,
ClientTypeAndroid: true,
ClientTypeIOS: true,
ClientTypeJSSDK: true,
ClientTypeMacOS: true,