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
Are you experiencing any issues because of that? Currently that method does not use any of the args and Javascript will just ignore any additional arguments passed. Because the args are not being used they were dropped from the method definition as to no have to add an eslint exception to the function declaration
in cometd_setup the call is
var url = getCometdURL(data.conn, data.args);
whereas the signature has only one parameter as below:
function getCometdURL(conn:any) {
return conn.instanceUrl + '/cometd/44.0';
}
The text was updated successfully, but these errors were encountered: