Team-Tea-Time / laravel-forum

A slim, lean forum package designed for quick and easy integration in Laravel projects
https://laravel-forum.teamteatime.net/
MIT License
601 stars 165 forks source link

Fix bug with force-deleting threads and posts #188

Closed seka19 closed 6 years ago

seka19 commented 6 years ago

When force-deleting thread or post its fails with error:

Call to a member function toDateTimeString() on null

or

Call to a member function toDateTimeString() on string

The reason is the field deleted_at can be only null (if model was not deleted before) or string (if there is some value in the deleted_at).

I fixed this problem.