Skip to content
This repository was archived by the owner on Jul 17, 2020. It is now read-only.

Commit 6ca0041

Browse files
author
Shea Sollars
committed
Quick fix
Forgot to remove search query forward slash (would have caused double slashes)
1 parent 40a9218 commit 6ca0041

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/plugins/jquery.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function jquery ( args ) {
6363
msg = baseURL + url;
6464
}
6565
else {
66-
msg = baseURL + '/?s=' + encodeURIComponent( args );
66+
msg = baseURL + '?s=' + encodeURIComponent( args );
6767
}
6868
bot.log( msg, '/jquery link' );
6969

0 commit comments

Comments
 (0)