Skip to content

Commit 892a960

Browse files
Successful remove analytics error fix
1 parent 6906a7a commit 892a960

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"printableName": "Cache Web Terminal",
66
"description": "Web-based terminal emulator for Caché administering.",
77
"author": "ZitRo",
8-
"version": "4.1.2",
8+
"version": "4.1.3",
99
"gaID": "UA-83005064-2",
1010
"releaseNumber": 26,
1111
"scripts": {

src/cls/WebTerminal/Installer.cls

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,9 @@ ClassMethod RemoveProjection(cls As %String, ByRef params, recompile As %Boolean
147147
set st = ..UnMap(ns)
148148
if ($$$ISERR(st)) {
149149
do $System.Status.DisplayError(st)
150-
do ##class(WebTerminal.Analytics).ReportInstallStatus(st)
150+
try { do ##class(WebTerminal.Analytics).ReportInstallStatus(st) } catch (e) {}
151151
} else {
152152
write !, "Unmapping complete."
153-
do ##class(WebTerminal.Analytics).ReportInstallStatus(1)
154153
}
155154

156155
return st

0 commit comments

Comments
 (0)