diff options
author | Matias Linares <matiaslina@openmailbox.org> | 2018-05-08 10:56:55 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@openmailbox.org> | 2018-05-08 10:56:55 -0300 |
commit | 9670fb210c6a0fa2003d6cf0c12fc2166fc5e602 (patch) | |
tree | f8d139deb547e808fac79d9739fdcfef2fd64a62 /lib | |
parent | e418fb8df723c3ebafa085dda18e5013f9b8b0e6 (diff) | |
download | perl6-matrix-client-9670fb210c6a0fa2003d6cf0c12fc2166fc5e602.tar.gz |
Fix infinite recursion.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Matrix/Response.pm6 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Matrix/Response.pm6 b/lib/Matrix/Response.pm6 index 6a25bf9..270cbd0 100644 --- a/lib/Matrix/Response.pm6 +++ b/lib/Matrix/Response.pm6 @@ -19,7 +19,7 @@ class Matrix::Response::RoomEvent is Matrix::Response::Event { method id { $.event_id } method timestamp { $!origin_server_ts } - method room-id { $.room-id } + method room-id { $.room_id } } class Matrix::Response::StateEvent is Matrix::Response::RoomEvent { |