livereload: Simplify RefreshPath
authorCameron Moore <moorereason@gmail.com>
Wed, 28 Dec 2016 03:14:43 +0000 (21:14 -0600)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 28 Dec 2016 10:09:50 +0000 (11:09 +0100)
livereload/livereload.go

index a3309c49adc1e974feb3c8b358fb39b6603cb3a6..04e3ac0f0d15123f347c25764e98a7a0b641fc45 100644 (file)
@@ -38,7 +38,7 @@ package livereload
 
 import (
        "net/http"
-       "strings"
+       "path/filepath"
 
        "github.com/gorilla/websocket"
 )
@@ -74,8 +74,8 @@ func ForceRefresh() {
 // will be updated in the browser, not the entire page.
 func RefreshPath(s string) {
        // Tell livereload a file has changed - will force a hard refresh if not CSS or an image
-       urlPath := strings.Replace(s, "\\", "/", -1) // If path has backslashes on Windows, make path work for URL
-       wsHub.broadcast <- []byte(`{"command":"reload","path":"` + urlPath + "\"" + `,"originalPath":"","liveCSS":true,"liveImg":true}`)
+       urlPath := filepath.ToSlash(s)
+       wsHub.broadcast <- []byte(`{"command":"reload","path":"` + urlPath + `","originalPath":"","liveCSS":true,"liveImg":true}`)
 }
 
 // ServeJS serves the liverreload.js who's reference is injected into the page.