Skip to content

Commit

Permalink
fix(notify): bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Airkro committed Dec 14, 2023
1 parent 4fea797 commit 8b7a925
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/notify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bring-it/notify",
"version": "0.0.0",
"version": "0.1.0",
"description": "Send releases notifications",
"license": "MIT",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export function http({ url, query, json, method = 'GET' }) {
const io = new URL(url);

for (const [key, value] of Object.entries(query)) {
url.searchParams.set(key, value);
io.searchParams.set(key, value);
}

return fetch(io.href, {
Expand Down

0 comments on commit 8b7a925

Please sign in to comment.