[grilo-plugins/0.1.x] podcasts: fix first retrieval of feed content
- From: Juan A. Suarez Romero <jasuarez src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [grilo-plugins/0.1.x] podcasts: fix first retrieval of feed content
- Date: Mon, 20 Jun 2011 09:59:15 +0000 (UTC)
commit 85c515215d011cc58fba1059b4a8286b9a663ebc
Author: Guillaume Emont <guijemont igalia com>
Date: Thu Jun 16 19:06:21 2011 +0200
podcasts: fix first retrieval of feed content
Check whether the last_refreshed value for this feed had been set. If not,
trigger a refresh.
src/media/podcasts/grl-podcasts.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/media/podcasts/grl-podcasts.c b/src/media/podcasts/grl-podcasts.c
index bbfde22..1855ce2 100644
--- a/src/media/podcasts/grl-podcasts.c
+++ b/src/media/podcasts/grl-podcasts.c
@@ -1386,7 +1386,7 @@ produce_podcast_contents (OperationSpec *os)
os->last_refreshed = lr.tv_sec;
g_get_current_time (&now);
now.tv_sec -= GRL_PODCASTS_SOURCE (os->source)->priv->cache_time;
- if (now.tv_sec >= lr.tv_sec) {
+ if (lr_str == NULL || now.tv_sec >= lr.tv_sec) {
/* We have to read the podcast feed again */
GRL_DEBUG ("Refreshing podcast '%s'...", os->media_id);
url = g_strdup ((gchar *) sqlite3_column_text (sql_stmt, PODCAST_URL));
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]