Daniel Gräfe
Daniel Gräfe
Currently, `Future.flatMap` is implemented like this: https://github.com/vapor/core/blob/fda3ebda8046af7c9a886fa4a5cfd886111ac23e/Sources/Async/Future%2BMap.swift#L45 Would it be possible to call through to SwiftNIO's implementation of `Future.then` instead? https://github.com/apple/swift-nio/blob/6f3671de4ed1350b86762e0da317075f69983f7d/Sources/NIO/EventLoopFuture.swift#L437 Let me know if I'm missing something.
`BoolField.validate` currently contains the following code: // If POSTing from a `checkbox` style input, the key's absence means `false`. let bool = value.bool ?? false However, if a checkbox named...
I'm trying to display a text field where the user could enter arbitrary integer values. For this, I currently have ``` struct Submission: Decodable, Reflectable, FieldsRepresentable { let integerField: Int?...
Line 857 of iRate.m currently contains this code: UIViewController *topController = [UIApplication sharedApplication].delegate.window.rootViewController; However, the `window` property of the `UIApplicationDelegate` is declared as optional. Thus, the above code leads to...
I noticed that https://github.com/silviolleite/laravel-pwa/blob/master/Http/Controllers/LaravelPWAController.php does not add `Cache-Control:` and `Expires:` headers to the response for `manifest.json`. It seems like this causes Chrome to re-download `manifest.json` with every navigation. Would it...
This library is super helpful for getting symbolicating stack traces on Linux, thank you so much! I'd like to create a custom `SymbolFormatter` that outputs stack traces in [Ruby format](https://blog.appsignal.com/2018/02/06/reading-and-understanding-ruby-stack-traces.html),...
Hi, I've just recently upgraded from an older version of GitX to GitX (L) V0.8.3. Now I have the issue that PBPreviousDocumentPaths doesn't change as soon as it is set...
### Platform macOS ### Environment Production ### Installed CocoaPods ### Version 8.33.0 ### Xcode Version 15.2 ### Did it work on previous versions? _No response_ ### Steps to Reproduce No...