Route/template memoization issue?
6 opened this issue · 2 comments
6 commented
Hey David, I can't get the simple.coffee
example working correctly. I start it up with coffee simple.coffee
and can access, say, /user/123 and this will correctly show <p>Hi, 123!</p>
However when I change the id
value for the user, it continues to give me back that original ID. For example, visiting /user/124 will show <p>Hi, 123!</p>
instead of the expected <p>Hi, 124!</p>
Do you know what might be going wrong here? I tried poking around the source a bit, but couldn't figure it out. Thanks!
sarenji commented
Wow, that was a pretty serious bug. Fixed!
Thanks!
6 commented
Awesome! It works great now