Skip to content

Commit

Permalink
Bump 1.4.8dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ysard committed Jan 3, 2019
2 parents a0fbe77 + b42fc08 commit b3d32c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:em="http://www.mozilla.org/2004/em-rdf#">
<Description about="urn:mozilla:install-manifest">
<em:id>mintray-reanimated@ysard</em:id>
<em:version>1.4.7dev</em:version>
<em:version>1.4.8dev</em:version>
<em:unpack>true</em:unpack>
<em:multiprocessCompatible>true</em:multiprocessCompatible>
<em:type>2</em:type>
Expand Down
4 changes: 3 additions & 1 deletion modules/trayservice.jsm
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ function fixPath(path) {
}

// fix path for windows
if (/^\/[A-Z]:\//.test(path)) { // detect if this is broken windows path: '\C:\xxx'
// detect if this is broken windows path: '\C:\xxx'
// or a network path: '\\network\drive\'
if (/^\/[A-Z]:\//.test(path) || /^\/{3}/.test(path)) {
path = path.substring(1, path.length); // remove leading slash
path = path.replace(/\//g, '\\'); // also convert slash to backslash
}
Expand Down

0 comments on commit b3d32c0

Please sign in to comment.