Skip to content

Commit 7249421

Browse files
fix: disable AB manifest fallback exception (#6673)
1 parent 4d0d82f commit 7249421

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Explorer/Assets/DCL/Infrastructure/ECS/StreamableLoading/AssetBundles/AssetBundleManifestFallbackHelper.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@ private static async UniTask CheckAssetBundleManifestFallbackInternalAsync(World
3838
//Needed to use the Time.realtimeSinceStartup on the intention creation
3939
await UniTask.SwitchToMainThread();
4040

41-
SentrySdk.AddBreadcrumb($"AB manifest version missing for entity: {entityDefinition.id}");
42-
ReportHub.LogException(new Exception("AssetBundleManifestFallbackHelper: AB Manifest Fallback requested"), ReportCategory.ASSET_BUNDLES);
41+
// Log breadcrumb and report exception disabled while we have separate flows for backpack and emotes. They need to be re-enabled once we unify the flows with the trimmed version.
42+
//SentrySdk.AddBreadcrumb($"AB manifest version missing for entity: {entityDefinition.id}");
43+
//ReportHub.LogException(new Exception("AssetBundleManifestFallbackHelper: AB Manifest Fallback requested"), ReportCategory.ASSET_BUNDLES);
4344

4445
var promise = AssetBundleManifestPromise.Create(world,
4546
GetAssetBundleManifestIntention.Create(entityDefinition.id, new CommonLoadingArguments(entityDefinition.id)),

0 commit comments

Comments
 (0)