diff options
Diffstat (limited to 'camel/providers/nntp/camel-nntp-folder.c')
-rw-r--r-- | camel/providers/nntp/camel-nntp-folder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/nntp/camel-nntp-folder.c b/camel/providers/nntp/camel-nntp-folder.c index e4d53d779f..ba469583e3 100644 --- a/camel/providers/nntp/camel-nntp-folder.c +++ b/camel/providers/nntp/camel-nntp-folder.c @@ -216,7 +216,7 @@ nntp_folder_get_uids (CamelFolder *folder) for (i = 0; i < count; i++) { message_info = camel_folder_summary_index (nntp_folder->summary, i); - out->pdata[i] = g_strdup (message_info->uid); + out->pdata[i] = g_strdup (camel_message_info_uid(message_info)); } return out; |