diff --git a/LICENSE b/LICENSE index 4bfe213cb..91ebac5f3 100755 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ /* -* 4chan X - Version 1.3.0 - 2014-01-11 +* 4chan X - Version 1.3.0 - 2014-01-12 * * Licensed under the MIT license. * https://github.com/seaweedchan/4chan-x/blob/master/LICENSE diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index 1b98664bd..8c9c9c83f 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -22,7 +22,7 @@ // ==/UserScript== /* -* 4chan X - Version 1.3.0 - 2014-01-11 +* 4chan X - Version 1.3.0 - 2014-01-12 * * Licensed under the MIT license. * https://github.com/seaweedchan/4chan-x/blob/master/LICENSE @@ -9827,7 +9827,7 @@ if (!((archive = archives[id]))) { continue; } - boards = type === 'file' ? archive.file : archive.boards; + boards = type === 'file' ? archive.files : archive.boards; if (__indexOf.call(boards, boardID) < 0) { continue; } diff --git a/builds/crx/script.js b/builds/crx/script.js index 56dfd9bab..77441fa14 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -1,6 +1,6 @@ // Generated by CoffeeScript /* -* 4chan X - Version 1.3.0 - 2014-01-11 +* 4chan X - Version 1.3.0 - 2014-01-12 * * Licensed under the MIT license. * https://github.com/seaweedchan/4chan-x/blob/master/LICENSE @@ -9816,7 +9816,7 @@ if (!((archive = archives[id]))) { continue; } - boards = type === 'file' ? archive.file : archive.boards; + boards = type === 'file' ? archive.files : archive.boards; if (__indexOf.call(boards, boardID) < 0) { continue; } diff --git a/src/Archive/Redirect.coffee b/src/Archive/Redirect.coffee index 5ac5b80db..9f7d54900 100755 --- a/src/Archive/Redirect.coffee +++ b/src/Archive/Redirect.coffee @@ -10,7 +10,7 @@ Redirect = for boardID, record of Conf['selectedArchives'] for type, id of record when (archive = archives[id]) - boards = if type is 'file' then archive.file else archive.boards + boards = if type is 'file' then archive.files else archive.boards continue unless boardID in boards o[type][boardID] = archive.data