From 130c9e47d6ea2c2d167e8c26fb7f83291177fbba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net> Date: Sun, 29 Dec 2024 01:28:33 -0500 Subject: [PATCH] More fixes... All the scripts I used this in previously had a read_apc() function. --- exec/load/syncterm_cache.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/load/syncterm_cache.js b/exec/load/syncterm_cache.js index f1df97ebd1..77aae3b2ab 100644 --- a/exec/load/syncterm_cache.js +++ b/exec/load/syncterm_cache.js @@ -89,7 +89,7 @@ SyncTERMCache.prototype.upload = function (fname, cache_fname) // Check for the file in the cache... console.write('\x1b_SyncTERM:C;L;'+cache_fname+'\x1b\\'); - var lst = read_apc(); + var lst = this.read_apc(); var idx = lst.indexOf('\n' + cache_fname + '\t'); if (idx !== -1) { idx += 2; -- GitLab