Dave Ungerer

Results 6 comments of Dave Ungerer

The above is the default Authlogic behaviour which can of course be overrided, i.e. you can tell Authlogic to treat emails as case sensitive if you want.

Whoops, email needs a downcase, this won't work otherwise...

Same issue here. In fact, if I write `client.feature_toggles == null`, IntelliJ (and my gradle build) warns me that `Condition 'client.feature_toggles == null' is always 'false'`, yet at runtime, `client.feature_toggles...

Did some more troubleshooting. Looks like the association is only available in the transaction. ``` fun getClient(id: Int) = transaction(db) { Client.findById(id)!!.also { println("inside transaction:") println(it.feature_toggles == null) } }.also...

@heli-os, it behaves this way even if I change it to `Client.findById(id)!!.load(Client::feature_toggles)`. I did some more googling and it turns out it's a design limitation, see https://github.com/JetBrains/Exposed/issues/656#issuecomment-542113164. So I think...

1. The mouse cursor can be hidden with: `video: { provider: :ffmpeg, devices: ["-draw_mouse 0"] }` I looked around the source code and found it in the specs. The devices...