Throws version exception, although Kirby 3.7.4 is running
owzim opened this issue · 1 comments
owzim commented
Describe the bug
An exception is thrown
Retour 4.3.1 supports Kirby 3.7.4 to 3.8.x
Steps to reproduce
Install kirby 3.7.4
then install retour
Solution
version_compare(Kirby::version() ?? '0.0.0', '3.7.4', '<=') === true
should be
version_compare(Kirby::version() ?? '0.0.0', '3.7.4', '<') === true
distantnative commented
✅