macmillan-utils 1.0.38 → 1.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/macmillan/utils/middleware/cookie_message.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 342d3f41a7778b3ea802b26a9f307f7a866291ce
|
|
4
|
+
data.tar.gz: b5f073466080b7af195b081f479146a6f7fb9c4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 192d5d9564ec74e1f896b410745effe764e11d919410482ede6770be1d0be77d6325944fcc4aaa427cd14b2bc7451dc1d4506d620d02b55f67c4e0a82c109de4
|
|
7
|
+
data.tar.gz: cb28995106f7da3fd9d4e18d7ac02bd2f61f53489c56f4adbfd87e3154d6bfb6a23eee0957480547cd8c87fcd06d7c696df9b872483334d99c85d9b8cf4236c8
|
|
@@ -30,6 +30,7 @@ module Macmillan
|
|
|
30
30
|
debug_log("request.post? IS #{request.post?.inspect}")
|
|
31
31
|
debug_log("request.cookies[#{COOKIE}] IS #{request.cookies[COOKIE].inspect}")
|
|
32
32
|
debug_log("request.params['cookies'] IS #{request.params['cookies'].inspect}")
|
|
33
|
+
debug_log("request.cookies IS #{request.cookies.inspect}")
|
|
33
34
|
|
|
34
35
|
unless request.post?
|
|
35
36
|
debug_log("request.post? (#{request.post?.inspect}) means passthru")
|
|
@@ -95,7 +96,7 @@ module Macmillan
|
|
|
95
96
|
|
|
96
97
|
def internal_redirect?(request, uri)
|
|
97
98
|
debug_log("Is redirect to #{uri.host}:#{uri.port} internal WRT #{request.host}:#{request.port}")
|
|
98
|
-
request.host == uri.host && request.port == uri.port
|
|
99
|
+
request.host == uri.host # && request.port == uri.port
|
|
99
100
|
end
|
|
100
101
|
|
|
101
102
|
class NullLogger
|