diff options
| -rw-r--r-- | CHANGELOG.md | 2 | ||||
| -rw-r--r-- | talpid-core/src/split_tunnel/windows/mod.rs | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e57041974..004f747b7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,6 +47,8 @@ Line wrap the file at 100 chars. Th #### Windows - Fix DNS issue on non-English Windows installations. Don't parse the output of ipconfig.exe to determine if the tool succeeded. +- Only use the most recent list of apps to split when resuming from hibernation/sleep if applying + it was successful. ### Security #### Android diff --git a/talpid-core/src/split_tunnel/windows/mod.rs b/talpid-core/src/split_tunnel/windows/mod.rs index e79f135d4b..d177b4f198 100644 --- a/talpid-core/src/split_tunnel/windows/mod.rs +++ b/talpid-core/src/split_tunnel/windows/mod.rs @@ -454,8 +454,8 @@ impl SplitTunnel { error.display_chain_with_msg("Failed to update path monitor") ); } + *monitored_paths_guard = paths.to_vec(); } - *monitored_paths_guard = paths.to_vec(); result } |
