Skip to content

Commit

Permalink
v1.4.1: Set cnt_nextdl to 32767
Browse files Browse the repository at this point in the history
  • Loading branch information
Brawl345 committed May 10, 2019
1 parent 568e203 commit 241bab5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/rssmii/meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<app version="1">
<name>RSSMii</name>
<coder>WiiDatabase.de, RiiConnect24, main()</coder>
<version>1.4</version>
<release_date>20190509000000</release_date>
<version>1.4.1</version>
<release_date>20190511000000</release_date>
<short_description>Subscribe to RSS-Feeds!</short_description>
<long_description>With RSSMii you can subscribe to RSS-Feeds right on your Wii! And you will receive updates as messages at the Wii message board!
The Homebrew reads a "feeds.xml" from the root of your SD Card and subscribes to all the feeds listed there while all previous subscriptions will be removed.
Expand Down
2 changes: 1 addition & 1 deletion rssmii/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ void AddJobs() {
int offset = 0;
offset = snprintf(jobs[i].final_url, MAX_BUF, "http://rss.wii.rc24.xyz/rss_displayer.php?feedurl=%s", url_encode(jobs[i].url, _buffer, MAX_BUF));
snprintf(jobs[i].final_url + offset, MAX_BUF - offset, "&title=%s", url_encode(jobs[i].name, _buffer, MAX_BUF));
ret = WC24_CreateRecord(&nwc24record, &nwc24entry, (u32)rssmiititleid, rssmiititleid, 0x4645, WC24_TYPE_MSGBOARD, WC24_RECORD_FLAGS_DEFAULT, WC24_FLAGS_HB, which, 0x5a0, 0, jobs[i].final_url, NULL);
ret = WC24_CreateRecord(&nwc24record, &nwc24entry, (u32)rssmiititleid, rssmiititleid, 0x4645, WC24_TYPE_MSGBOARD, WC24_RECORD_FLAGS_DEFAULT, WC24_FLAGS_HB, which, 0x5a0, 32767, jobs[i].final_url, NULL);
if (ret < 0) {
printf("ERROR: WC24_CreateRecord returned %d\n", ret);
}
Expand Down

0 comments on commit 241bab5

Please sign in to comment.