Subject: | [PATCH] Incorrect http -> https redirect |
Observed behavior: when unsecured address is redirected to a secured one, the package produces an illegal address.
Example: http://www.facebook.com is redirected to https://www.facebook.com (when no user is logged in). Package produces an address http://https://www.facebook.com (which is illegal and fails).
The problem lies in the method _make_url_absolute(). File Async.pm.patch2 replaces the method's logic by a simple call to URI->new_abs(). Alternatively (to keep the original code in place) file Async.pm.patch3 can be used.
Subject: | Async.pm.patch3 |
Message body not shown because it is not plain text.
Subject: | Async.pm.patch2 |
Message body not shown because it is not plain text.