From 1486c0243c2f68a9ddde33993af94f5393e76006 Mon Sep 17 00:00:00 2001 From: sawka Date: Sun, 3 Jul 2022 12:02:22 -0700 Subject: [PATCH] checkpoint, new scpacket.FeCommandPacket --- src/session.ts | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/src/session.ts b/src/session.ts index 7510412a..7d30f232 100644 --- a/src/session.ts +++ b/src/session.ts @@ -81,9 +81,36 @@ class Session { constructor() { } + getWindowCurRemoteData(windowid : string) : SessionRemoteDataType { + let window = this.getWindowById(windowid); + if (window == null) { + return null; + } + for (let i=0; i handleJsonFetchResponse(url, resp)).then((data) => { mobx.action(() => { let lines = GlobalLines.get();