Commit d5a8496
committed
Fix
PR #1205 added a call to `matrix_join_room`, but did not await the result,
which resulted in a bunch of warnings:
```
** Calling ->then in void context at tests/10apidoc/33room-members.pl line 82.
** IO::Async::Future=HASH(0x557d6befbf40) IO::Async::Future=HASH(0x557d6befbf40) lost a sequence Future at /home/rav/lib/perl5/Net/Async/HTTP/Connection.pm line 472.
```
Waiting for the join to complete before proceeding fixes the warnings.Calling ->then in void context warning1 parent 8c06539 commit d5a8496
1 file changed
+5
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
63 | | - | |
64 | | - | |
65 | 63 | | |
66 | 64 | | |
67 | | - | |
68 | | - | |
69 | | - | |
| 65 | + | |
70 | 66 | | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
| |||
0 commit comments