Skip to content

Commit

Permalink
remove left over debugging code(closes #42)
Browse files Browse the repository at this point in the history
  • Loading branch information
joethei committed Oct 1, 2022
1 parent 126a8ba commit c9ca0ea
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ icon <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Externa
.

```css
.external-link.external-link.external-link::after {
.external-link::after {
display: none;
content: '';
}
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "link-favicon",
"name": "Link Favicons",
"version": "1.8.0",
"version": "1.8.1",
"minAppVersion": "0.15.0",
"description": "See the favicon for a linked website. ",
"author": "Johannes Theiner",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "link-favicon",
"version": "1.8.0",
"version": "1.8.1",
"description": "See the favicon for a linked website. ",
"main": "src/main.js",
"scripts": {
Expand Down
1 change: 0 additions & 1 deletion src/IconAdder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export class IconAdder {
return new URL(link);
} catch (e) {
//we have a link without a protocol for some reason
console.log(link);
if(!link.startsWith("http")) return this.constructURL("http://" + link);
return undefined;
}
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,6 @@
"1.7.2": "0.13.30",
"1.7.3": "0.13.30",
"1.7.4": "0.15.0",
"1.8.0": "0.15.0"
"1.8.0": "0.15.0",
"1.8.1": "0.15.0"
}

0 comments on commit c9ca0ea

Please sign in to comment.