diff options
author | Jesús <heckyel@hyperbola.info> | 2020-12-02 13:18:49 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-12-02 13:18:49 -0500 |
commit | a8ec1802a099365ab7d7bc06aee25884fc3876d5 (patch) | |
tree | 9cfa0e3bf26d9aa6c6032b4e30529d67d6fbcae6 /lib/WWW/FairViewer/CommentThreads.pm | |
parent | 1e1ff5349fb5c6a72012063709de1807f0a6696d (diff) | |
download | fair-viewer-a8ec1802a099365ab7d7bc06aee25884fc3876d5.tar.lz fair-viewer-a8ec1802a099365ab7d7bc06aee25884fc3876d5.tar.xz fair-viewer-a8ec1802a099365ab7d7bc06aee25884fc3876d5.zip |
Improve syntax
Diffstat (limited to 'lib/WWW/FairViewer/CommentThreads.pm')
-rw-r--r-- | lib/WWW/FairViewer/CommentThreads.pm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/WWW/FairViewer/CommentThreads.pm b/lib/WWW/FairViewer/CommentThreads.pm index 094ebd7..760756e 100644 --- a/lib/WWW/FairViewer/CommentThreads.pm +++ b/lib/WWW/FairViewer/CommentThreads.pm @@ -36,11 +36,7 @@ Retrieve comments from a video ID. sub comments_from_video_id { my ($self, $video_id) = @_; - $self->_get_results( - $self->_make_feed_url("comments/$video_id", - sort_by => $self->get_comments_order, - ), - ); + $self->_get_results($self->_make_feed_url("comments/$video_id", sort_by => $self->get_comments_order)); } =head2 comment_to_video_id($comment, $videoID) |