aboutsummaryrefslogtreecommitdiff
path: root/examples/bot.p6
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bot.p6')
-rwxr-xr-xexamples/bot.p64
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/bot.p6 b/examples/bot.p6
index 24ab1e6..8a9d206 100755
--- a/examples/bot.p6
+++ b/examples/bot.p6
@@ -1,7 +1,7 @@
#!/usr/bin/env perl6
use v6;
use lib "lib";
-use JSON::Tiny;
+use JSON::Fast;
use Matrix::Client;
use Matrix::Client::Exception;
@@ -34,7 +34,7 @@ class Bot {
my $sync = { room => timeline => limit => 1 };
my $response = $!client.sync(sync-filter => $sync, since => $since);
$since = $response.next-batch;
-
+
for $response.joined-rooms -> $room {
for $room.timeline
.events