Skip to content

Commit 44d6371

Browse files
do not load extensions for mini.js
can cause CSS problems, etc. still not the extension-flags feature we want (#1609)
1 parent e614905 commit 44d6371

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rcloud.support/R/session.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ rcloud.reset.session <- function() {
134134
## use the global workspace as the parent to avoid long lookups across irrelevant namespaces
135135
.session$knitr.env <- new.env(parent=.GlobalEnv)
136136
## load all-user and per-user rcloud add-ons
137-
if (!identical(.session$mode, "call")) {
137+
if (!(identical(.session$mode, "call") || identical(.session$mode, "client"))) {
138138
all.addons <- rcloud.config.get.alluser.option("addons")
139139
user.addons <- rcloud.config.get.user.option("addons")
140140
user.skip.addons <- rcloud.config.get.user.option("skip-addons");

0 commit comments

Comments
 (0)