We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e2eb8db + 24ff682 commit 97a22e7Copy full SHA for 97a22e7
IOSDeviceLib/IOSDeviceLib.cpp
@@ -221,7 +221,8 @@ void cleanup_file_resources(const std::string& device_identifier)
221
222
if (devices[device_identifier].apps_cache.size())
223
{
224
- for (auto const& key_value_pair : devices[device_identifier].apps_cache)
+ std::map<std::string, ApplicationCache> apps_cache_clone = devices[device_identifier].apps_cache;
225
+ for (auto const& key_value_pair : apps_cache_clone)
226
227
cleanup_file_resources(device_identifier, key_value_pair.first);
228
}
package.json
@@ -1,6 +1,6 @@
1
2
"name": "ios-device-lib",
3
- "version": "0.4.7",
+ "version": "0.4.8",
4
"description": "",
5
"types": "./typings/ios-device-lib.d.ts",
6
"main": "index.js",
0 commit comments