Skip to content

Commit 2c5fa15

Browse files
authored
fix: encoding for shodan URL was broken
1 parent ea86b79 commit 2c5fa15

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tinect/redirects",
33
"description": "Redirect plugin for Shopware 6",
4-
"version": "3.3.0",
4+
"version": "3.3.1",
55
"type": "shopware-platform-plugin",
66
"license": "MIT",
77
"authors": [

src/Resources/app/administration/src/module/tinect-redirects/component/requests/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export default {
9999
},
100100
pulsedrive: {
101101
label: this.$tc('tinect-redirects.requests.ipCheckers.pulsedrive'),
102-
url(ipAddress) { return 'https://pulsedive.com/indicator/?ioc=' + window.btob(ipAddress); },
102+
url(ipAddress) { return 'https://pulsedive.com/indicator/?ioc=' + window.btoa(ipAddress); },
103103
},
104104
whois: {
105105
label: this.$tc('tinect-redirects.requests.ipCheckers.whois'),

0 commit comments

Comments
 (0)