From 77573ecb1706d3747abca78836020983b07e4075 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristj=C3=A1n=20Ingi=20Mikaelsson?= Date: Fri, 12 Jun 2015 11:38:27 +0000 Subject: [PATCH] Fixed getFriendStories method when $save=true --- src/snapchat.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/snapchat.php b/src/snapchat.php index f095e69..c642914 100755 --- a/src/snapchat.php +++ b/src/snapchat.php @@ -1000,8 +1000,9 @@ function getFriendStories($save = FALSE) $from = $story->username; $mediaKey = $story->media_key; $mediaIV = $story->media_iv; + $timestamp = $story->timestamp; - $this->getStory($id, $mediaKey, $mediaIV, $from, $save); + $this->getStory($id, $mediaKey, $mediaIV, $from,$timestamp, $save); } }