Skip to content

Fix annoying moments

Compare
Choose a tag to compare
@MihaelIsaev MihaelIsaev released this 23 Feb 11:11
· 54 commits to master since this release
  • fix annoying warning: cannot modify client configuration after client has been used
  • add send method with eventLoop argument to avoid manual hop(to:) call
    so now if you send from Request you could write
req.fcm.send(message, on: req.eventLoop)

instead of

req.fcm.send(message).hop(to: req.eventLoop)