diff options
author | 2024-04-02 01:01:23 +0200 | |
---|---|---|
committer | 2024-04-02 01:01:23 +0200 | |
commit | 8f962383c269aa181c3fc7025c478ae712cd38a3 (patch) | |
tree | 9bfc044df8eb9388170a1affb9165e666c0389ac | |
parent | bb979e9e0865991806f0d2cf1c55044168bcf586 (diff) | |
download | rss-bridge-8f962383c269aa181c3fc7025c478ae712cd38a3.tar.gz rss-bridge-8f962383c269aa181c3fc7025c478ae712cd38a3.tar.zst rss-bridge-8f962383c269aa181c3fc7025c478ae712cd38a3.zip |
[eBayBridge] fix Belgian eBay URL handling (#4050)
Fixes #3918
-rw-r--r-- | bridges/EBayBridge.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/EBayBridge.php b/bridges/EBayBridge.php index 507930ea..87958164 100644 --- a/bridges/EBayBridge.php +++ b/bridges/EBayBridge.php @@ -10,7 +10,7 @@ class EBayBridge extends BridgeAbstract 'url' => [ 'name' => 'Search URL', 'title' => 'Copy the URL from your browser\'s address bar after searching for your items and paste it here', - 'pattern' => '^(https:\/\/)?(www.)?ebay\.(com|com\.au|at|be|ca|ch|cn|es|fr|de|com\.hk|ie|it|com\.my|nl|ph|pl|com\.sg|co\.uk).*$', + 'pattern' => '^(https:\/\/)?(www\.)?(befr\.|benl\.)?ebay\.(com|com\.au|at|be|ca|ch|cn|es|fr|de|com\.hk|ie|it|com\.my|nl|ph|pl|com\.sg|co\.uk).*$', 'exampleValue' => 'https://www.ebay.com/sch/i.html?_nkw=atom+rss', 'required' => true, ] |