Community
Participate
Working Groups
Version: CVS HEAD When an application is started with the *debug* library variant we get the "Multiple browser-instances..." bug the first time we load the app in any browser. The problem does not occur in standard mode.
Hi Austin, I cannot reproduce this. Does clearing the setting store (instance area) help? Or do you have any pointers how this problem can be reproduced?
Today I started the Workbench Demo and I get "Multiple browser-instances not supported" error on startup too. I got this error only on first run - with text size determination requests. Anyone could confirm this with Workbench Demo?
The problem was in Processor.js#processMeta. The check for existence of requestCounter parameter was wrong: ... if( meta.requestCounter ) { ... because it does not set the requestCounter to 0. Replaced with: ... if( meta.requestCounter !== undefined ) { ... Austin, please confirm that the issue is fixed.
(In reply to comment #3) > Austin, please confirm that the issue is fixed. I tested in our environment and it works great.