From 0257f1a74316e04b92283f049b0139b224a3b435 Mon Sep 17 00:00:00 2001 From: Brandon Wees Date: Thu, 29 May 2025 09:06:13 -0500 Subject: [PATCH] chore(mobile): add default cast user pref to openapi patching (#18747) add default cast user pref to mobile patching --- mobile/lib/utils/openapi_patching.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/mobile/lib/utils/openapi_patching.dart b/mobile/lib/utils/openapi_patching.dart index 7c7d9bab882..58c3ef83947 100644 --- a/mobile/lib/utils/openapi_patching.dart +++ b/mobile/lib/utils/openapi_patching.dart @@ -11,6 +11,7 @@ dynamic upgradeDto(dynamic value, String targetType) { addDefault(value, 'people', PeopleResponse().toJson()); addDefault(value, 'tags', TagsResponse().toJson()); addDefault(value, 'sharedLinks', SharedLinksResponse().toJson()); + addDefault(value, 'cast', CastResponse().toJson()); } break; case 'ServerConfigDto':