mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-23 08:46:09 +01:00
🎨 Improve the mouse hove data sync button information on the desktop and browser https://github.com/siyuan-note/siyuan/issues/8521
This commit is contained in:
parent
a7e6164f0e
commit
b35950b957
3 changed files with 5 additions and 4 deletions
|
|
@ -623,7 +623,7 @@ func GetOnlineKernels() (ret []*OnlineKernel) {
|
|||
tmp := onlineKernels
|
||||
onlineKernelsLock.Unlock()
|
||||
for _, kernel := range tmp {
|
||||
if kernel.ID == kernelID {
|
||||
if kernel.ID == KernelID {
|
||||
continue
|
||||
}
|
||||
|
||||
|
|
@ -740,14 +740,14 @@ func connectSyncWebSocket() {
|
|||
}()
|
||||
}
|
||||
|
||||
var kernelID = gulu.Rand.String(7)
|
||||
var KernelID = gulu.Rand.String(7)
|
||||
|
||||
func dialSyncWebSocket() (c *websocket.Conn, err error) {
|
||||
//endpoint := "ws://127.0.0.1:64388" + "/apis/siyuan/dejavu/ws"
|
||||
endpoint := util.AliyunWebSocketServer + "/apis/siyuan/dejavu/ws"
|
||||
header := http.Header{
|
||||
"x-siyuan-uid": []string{Conf.User.UserId},
|
||||
"x-siyuan-kernel": []string{kernelID},
|
||||
"x-siyuan-kernel": []string{KernelID},
|
||||
"x-siyuan-ver": []string{util.Ver},
|
||||
"x-siyuan-os": []string{runtime.GOOS},
|
||||
"x-siyuan-hostname": []string{util.GetDeviceName()},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue