Skip to content

Commit

Permalink
fixes to FormData network support (#2570)
Browse files Browse the repository at this point in the history
* convert blocking .get calls from SendRequest() to co_await

* Move NetworkingModule to background thread instead
  • Loading branch information
ahimberg authored Jun 5, 2019
1 parent dad52b0 commit 6fc06ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vnext/ReactUWP/Base/UwpReactInstance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ std::vector<facebook::react::NativeModuleDescription> GetModules(
modules.emplace_back(
NetworkingModule::name,
[]() { return std::make_unique<NetworkingModule>(); },
messageQueue);
std::make_shared<WorkerMessageQueueThread>());

modules.emplace_back(
"Timing",
Expand Down

0 comments on commit 6fc06ff

Please sign in to comment.