User reports issues when upgrading their packages. Suspect it's related to shiny packages
shiny::runApp(system.file("sake", package="sake"))
Loading required package: shiny
Error in get(name, envir = asNamespace(pkg), inherits = FALSE) :
object '%OR%' not found
It appears the global.R file line 13 is the source of the error. When commenting this line out, I do get the shiny app to load, however, the functionality is extremely restricted.
%then% <- shiny:::%OR%
User reports issues when upgrading their packages. Suspect it's related to
shiny
packagesIt appears the global.R file line 13 is the source of the error. When commenting this line out, I do get the shiny app to load, however, the functionality is extremely restricted.
%then%
<- shiny:::%OR%
Will need to replace that line with link
%then%
<- function(a, b) { if (is.null(a)) b else a }