Skip to content

Commit 2e030c6

Browse files
author
mandy
committed
What was I even thinking, why would the port come before the semi colon?
1 parent 3cde3bb commit 2e030c6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sonar_fingerprint_generator/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sonar.js - Fingerprint Generator",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"manifest_version": 2,
55
"description": "Fingerprint generator for the sonar.js project",
66
"homepage_url": "https://github.com/mandatoryprogrammer/sonar.js",

sonar_fingerprint_generator/src/inject/inject.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function get_relative_path( url ) {
77
if( el.port == "" ) {
88
return el.pathname;
99
} else {
10-
return el.port + ':' + el.pathname;
10+
return ':' + el.port + el.pathname;
1111
}
1212
}
1313
function get_resource_array( document_ref ) {

0 commit comments

Comments
 (0)