<div dir="ltr">Hey,<div><br></div><div>Let me copy the reply I gave on the issue on Github regarding this for whoever isn't following Github issues:</div><div><br></div><div><div>That's a good catch!</div><div><br></div><div>We changed `referer` to simply use `Plack::Request`'s `referer` method. This makes it more consistent with another publicly-known interface to a Plack request (the canonical one, in fact).</div><div><br></div><div>I'm sorry to hear you had code depending on it which now failed.</div><div><br></div><div>Here is the relevant commit:</div><div>738b4f15ea3ae72900c17763044cd1ac143d13b3</div><div><br></div><div>There was a small mistake there that was fixed in the commit after:</div><div>3f885d0d8ca173e5620354be1d5a12802930add7</div></div><div><br></div><div>S.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Dec 10, 2014 at 8:34 PM, Gabor Szabo <span dir="ltr"><<a href="mailto:gabor@szabgab.com" target="_blank">gabor@szabgab.com</a>></span> wrote:<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>If there is *no* referrer then  </div><div><br></div><div>@z = request->referer;   used to return an 'undef' </div><div><br></div><div>Now it returns and empty list.</div><div><br></div><div>This blew up in my code that had</div><div><br></div><div>%h = (</div><div>    ref => request->referer,</div><div>    ....</div><div>);</div><div><br></div><div>so I'll have to replace that code with</div><div><br></div><div><div>%h = (</div><div>    ref => scalar request->referer,</div><div>    ....</div><div>);</div><div><br></div></div><div>or with</div><div><br></div><div><div>%h = (</div><div>    ref => ( request->referer // ''),</div><div>    ....</div><div>);</div></div><div><br></div><div><br></div><div>I understand that the D2 behaves "more correctly" than D1 did, but I'd like to verify. </div><div>Is this change is also intentional? Could you point out where else has this change happened?</div><div><br></div><div>regards</div><span class="HOEnZb"><font color="#888888"><div>  Gabor</div><div><br></div><div></div>
</font></span></div>
<br>_______________________________________________<br>
dancer-users mailing list<br>
<a href="mailto:dancer-users@dancer.pm">dancer-users@dancer.pm</a><br>
<a href="http://lists.preshweb.co.uk/mailman/listinfo/dancer-users" target="_blank">http://lists.preshweb.co.uk/mailman/listinfo/dancer-users</a><br>
<br></blockquote></div></div>