EventStore / EventStore.UI

The user interface for Event Store
Other
58 stars 38 forks source link

Stream page browsing breaks when there is a slash in stream name #284

Open shaan1337 opened 3 years ago

shaan1337 commented 3 years ago

Version tested: 20.10.0

Reproduction steps:

  1. Create a stream name with a slash in it (e.g test/1 or test/abc)
  2. Add more than 20 events to the stream generate a second page
  3. Browse the stream and click on the Next button
  4. Nothing happens and the console shows the following error:
    http://localhost:2113/streams/test%2F1/40/forward/20. Error: Not Found

Workaround

Replacing %2F by ~2F in the URL of the Next/Previous buttons seems to fix the issue.