From 4bbff3cf8adf201978e2c3459ed84e7261940842 Mon Sep 17 00:00:00 2001 From: Morgan McMillian Date: Mon, 19 Jun 2017 18:42:24 -0700 Subject: [PATCH] bump post count and include raw when retrieving thread. #5 --- src/pages/stream/stream.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/stream/stream.ts b/src/pages/stream/stream.ts index 82e0504..97ec45f 100644 --- a/src/pages/stream/stream.ts +++ b/src/pages/stream/stream.ts @@ -86,7 +86,7 @@ export class StreamPage { } fetchThread(threadid) { - pnut.thread(threadid).then(res => { + pnut.thread(threadid, {include_raw: 1, count: 140}).then(res => { this.navCtrl.push(ThreadPage, {posts: res.data}); }).catch(err => { console.log(err);