You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the code checks for Shiny by walking the call stack, looking for a call to shiny::runApp.
There are two caveats:
As mentioned in a user group discussion, this may fail when runApp is invoked differently (which could happen).
Even without any change in the invocation, there may be convoluted situations where multiple functions called runApp are on the call stack. In such cases, the check will fail.
The text was updated successfully, but these errors were encountered:
Currently, the code checks for Shiny by walking the call stack, looking for a call to
shiny::runApp
.There are two caveats:
runApp
is invoked differently (which could happen).runApp
are on the call stack. In such cases, the check will fail.The text was updated successfully, but these errors were encountered: