n0r1z0
n0r1z0
**Describe the bug** Reflex installs Bun even though `BUN_PATH` is set. **To Reproduce** 1. Install Bun manually. However, the version of Bun is different from `constants.Bun.VERSION`. 2. Set an environment...
**Describe the bug** Both `MiddlewareMixin._preprocess ` and `MiddlewareMixin._postprocess` are called when processing events. https://github.com/reflex-dev/reflex/blob/5c8104ff5bdc6c39f5f2ef499365331f1a2af541/reflex/app.py#L1616-L1617 https://github.com/reflex-dev/reflex/blob/5c8104ff5bdc6c39f5f2ef499365331f1a2af541/reflex/app.py#L1631-L1632 https://github.com/reflex-dev/reflex/blob/5c8104ff5bdc6c39f5f2ef499365331f1a2af541/reflex/app.py#L1449-L1450 On the other hand, only `MiddlewareMixin._postprocess` is called when processing upload requests. https://github.com/reflex-dev/reflex/blob/5c8104ff5bdc6c39f5f2ef499365331f1a2af541/reflex/app.py#L1795