mirror of
https://github.com/logseq/logseq.git
synced 2026-02-01 22:47:36 +00:00
fix: graph keep re-index when loading
The reason is that `mtime` and `ctime` are lost in the main thread.
This commit is contained in:
@@ -52,7 +52,7 @@
|
||||
(utils/read-file path))
|
||||
stat (when (and (not= event "unlink")
|
||||
(not dir-path?))
|
||||
(fs/statSync path))]
|
||||
(utils/fs-stat->clj path))]
|
||||
(send-file-watcher! dir event (merge {:dir (utils/fix-win-path! dir)
|
||||
:path (utils/fix-win-path! path)
|
||||
:content content
|
||||
|
||||
@@ -123,7 +123,7 @@
|
||||
(when (and (chmod-enabled?) (fs/existsSync path) (not (writable? path)))
|
||||
(fs/chmodSync path "644"))
|
||||
(fs/writeFileSync path content)
|
||||
(fs/statSync path)
|
||||
(utils/fs-stat->clj path)
|
||||
(catch :default e
|
||||
(logger/warn ::write-file path e)
|
||||
(let [backup-path (try
|
||||
@@ -144,7 +144,7 @@
|
||||
(fs/renameSync old-path new-path))
|
||||
|
||||
(defmethod handle :stat [_window [_ path]]
|
||||
(fs/statSync path))
|
||||
(utils/fs-stat->clj path))
|
||||
|
||||
(defn- get-files
|
||||
"Returns vec of file-objs"
|
||||
@@ -506,7 +506,6 @@
|
||||
(debounced-configure-auto-commit!)
|
||||
nil)
|
||||
|
||||
|
||||
(defmethod handle :installMarketPlugin [_ [_ mft]]
|
||||
(plugin/install-or-update! mft))
|
||||
|
||||
|
||||
@@ -149,7 +149,6 @@
|
||||
(logger/warn "Unknown PAC rule:" line)
|
||||
nil))))
|
||||
|
||||
|
||||
(defn <get-system-proxy
|
||||
"Get system proxy for url, requires proxy to be set to system"
|
||||
([] (<get-system-proxy "https://www.google.com"))
|
||||
@@ -288,3 +287,10 @@
|
||||
(catch :default _
|
||||
(println "decodeURIComponent failed: " uri)
|
||||
uri)))
|
||||
|
||||
(defn fs-stat->clj
|
||||
[path]
|
||||
(let [stat (fs/statSync path)]
|
||||
{:size (.-size stat)
|
||||
:mtime (.-mtime stat)
|
||||
:ctime (.-ctime stat)}))
|
||||
|
||||
Reference in New Issue
Block a user