There was an error while loading. Please reload this page.
1 parent 15db6e0 commit a1bc0f3Copy full SHA for a1bc0f3
1 file changed
src/mono/wasm/runtime/debug.ts
@@ -149,6 +149,10 @@ export function mono_wasm_get_loaded_files(): string[] {
149
function _create_proxy_from_object_id(objectId: string, details: any) {
150
if (objectId.startsWith("dotnet:array:")) {
151
let ret: Array<any>;
152
+ if (details.items === undefined) {
153
+ ret = details.map ((p: any) => p.value);
154
+ return ret;
155
+ }
156
if (details.dimensionsDetails === undefined || details.dimensionsDetails.length === 1) {
157
ret = details.items.map((p: any) => p.value);
158
return ret;
0 commit comments