aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Dawid Wróbel <me@dawidwrobel.com> 2024-04-02 01:01:23 +0200
committerGravatar GitHub <noreply@github.com> 2024-04-02 01:01:23 +0200
commit8f962383c269aa181c3fc7025c478ae712cd38a3 (patch)
tree9bfc044df8eb9388170a1affb9165e666c0389ac
parentbb979e9e0865991806f0d2cf1c55044168bcf586 (diff)
downloadrss-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.php2
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,
]