diff --git a/CHANGELOG.md b/CHANGELOG.md index 30c989a2..a75e39ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,7 +26,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com), and this #### Fixed -* *Nothing* +* [#665](https://github.com/shlinkio/shlink/issues/665) Fixed `base_url_redirect_to` simplified config option not being properly parsed. ## 2.0.5 - 2020-02-09 diff --git a/module/Core/test/Config/SimplifiedConfigParserTest.php b/module/Core/test/Config/SimplifiedConfigParserTest.php index 7a304ad5..02f96423 100644 --- a/module/Core/test/Config/SimplifiedConfigParserTest.php +++ b/module/Core/test/Config/SimplifiedConfigParserTest.php @@ -41,6 +41,8 @@ class SimplifiedConfigParserTest extends TestCase 'validate_url' => true, 'delete_short_url_threshold' => 50, 'invalid_short_url_redirect_to' => 'foobar.com', + 'regular_404_redirect_to' => 'bar.com', + 'base_url_redirect_to' => 'foo.com', 'redis_servers' => [ 'tcp://1.1.1.1:1111', 'tcp://1.2.2.2:2222', @@ -114,6 +116,8 @@ class SimplifiedConfigParserTest extends TestCase 'not_found_redirects' => [ 'invalid_short_url' => 'foobar.com', + 'regular_404' => 'bar.com', + 'base_url' => 'foo.com', ], 'mezzio-swoole' => [