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
In the Tatami source code, the method HomeController.anyOtherSubPath is used by TatamiCustomization.
The problem is that it is mapped on "/{subPath}" : if someone asks for a page that does not exists, this method takes it, and the 404 error will not be treated correctly : this is why we have some 500 errors and stacktraces in production.
-> In Tatami, I am replacing this mapping to "/customization/{subPath}" : people can still add new pages using this "/customization" prefix, but this will handle correctly 404 errors.
The text was updated successfully, but these errors were encountered:
In the Tatami source code, the method HomeController.anyOtherSubPath is used by TatamiCustomization.
The problem is that it is mapped on "/{subPath}" : if someone asks for a page that does not exists, this method takes it, and the 404 error will not be treated correctly : this is why we have some 500 errors and stacktraces in production.
-> In Tatami, I am replacing this mapping to "/customization/{subPath}" : people can still add new pages using this "/customization" prefix, but this will handle correctly 404 errors.
The text was updated successfully, but these errors were encountered: