Commit a5fe0681 a5fe0681b7ca0a14606429d6bdb61f7163ae8eb0 by Christian Gerdes

Force UrlEncoded Cookies now also runs on Dependent Requests

1 parent 80f74fe6
...@@ -53,6 +53,10 @@ namespace LIL_VSTT_Plugins ...@@ -53,6 +53,10 @@ namespace LIL_VSTT_Plugins
53 } 53 }
54 } 54 }
55 } 55 }
56 foreach (WebTestRequest w in e.Request.DependentRequests)
57 {
58 w.PostRequest += new EventHandler<PostRequestEventArgs>(this.PostRequest);
59 }
56 } 60 }
57 } 61 }
58 62
......