Replies: 2 comments 3 replies
-
My assumption is that the mobile identification would have been done earlier in the pipeline, and you cannot change the incoming request cookies, but you can change the outgoing response cookies, so that is the "most current" value. |
Beta Was this translation helpful? Give feedback.
3 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When identifying browser type and mobile, in the following code
Dnn.Platform/DNN Platform/Library/Entities/Urls/FriendlyUrlController.cs
Lines 837 to 882 in 949cac2
I wonder why cookies are not used in the request, but in the response
HttpCookie viewMobileCookie = response.Cookies[MobileViewSiteCookieName];
HttpCookie viewMobileCookie = request.Cookies[MobileViewSiteCookieName];
What is the difference?
Beta Was this translation helpful? Give feedback.
All reactions