From 767c6855c8fdd00a6661f38e7c6c3a950f895179 Mon Sep 17 00:00:00 2001 From: Michel Weststrate Date: Wed, 19 May 2021 06:21:49 -0700 Subject: [PATCH] Clean up response handling Reviewed By: priteshrnandgaonkar, fabiomassimo Differential Revision: D28441183 fbshipit-source-id: 6e47d05145e986279860b49cfff078a905f62689 --- desktop/plugins/public/network/index.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/desktop/plugins/public/network/index.tsx b/desktop/plugins/public/network/index.tsx index 13992b1f5..870ec3a04 100644 --- a/desktop/plugins/public/network/index.tsx +++ b/desktop/plugins/public/network/index.tsx @@ -151,9 +151,7 @@ export function plugin(client: PluginClient) { }); client.onMessage('newRequest', (data) => { - // TODO: This should be append, but there is currently a bug where requests are send multiple times from the - // device! (Wilde on emulator) - requests.upsert(createRequestFromRequestInfo(data, customColumns.get())); + requests.append(createRequestFromRequestInfo(data, customColumns.get())); }); function storeResponse(response: ResponseInfo) {