@hocuspocus/provider 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2228,7 +2228,10 @@ class HocuspocusProvider extends EventEmitter {
2228
2228
  class TiptapCollabProvider extends HocuspocusProvider {
2229
2229
  constructor(configuration) {
2230
2230
  if (!configuration.url) {
2231
- configuration.url = `wss://${configuration.appId}.tt-collab.de`;
2231
+ configuration.url = `wss://${configuration.appId}.collab.tiptap.cloud`;
2232
+ }
2233
+ if (!configuration.token) {
2234
+ configuration.token = 'notoken';
2232
2235
  }
2233
2236
  super(configuration);
2234
2237
  }