From 0245f809615cda1df8d85b34f4cbb98c470fff2c Mon Sep 17 00:00:00 2001
From: Juerd Waalboer <juerd@tnx.nl>
Date: Mon, 18 Sep 2023 01:33:35 +0200
Subject: [PATCH] url: Print line but don't skip "no such product/..." error
 message

---
 plugins/url | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/plugins/url b/plugins/url
index 486d4e4..6d3cc41 100644
--- a/plugins/url
+++ b/plugins/url
@@ -2,8 +2,7 @@
 
 sub command($self, $cart, $command, @) {
     if ($command =~ m[^https?://]) {
-        print "This is not a browser...";
-        return ACCEPT;
+        print "This is not a browser...\n";
     }
     return NEXT;
 }