Skip to content

Commit

Permalink
datをダウンロードする条件を「新着ありandスレッドの総レス数が既得レス数より多いとき」に変更
Browse files Browse the repository at this point in the history
  • Loading branch information
2ch774 committed Mar 12, 2015
1 parent c1a9ff0 commit 9b57274
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/fetch-dat.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* rep2expack - コマンドラインでsubject.txtを並列ダウンロード
* rep2expack - コマンドラインでdatをダウンロード
*/

// {{{ 初期設定
Expand Down Expand Up @@ -157,14 +157,14 @@
$aThread->rescount = $aThread->gotnum;
}

// 新着あり
if ($aThread->unum > 0) {
// 新着ありandスレッドの総レス数が既得レス数より多いとき
if ($aThread->unum > 0 && $aThread->rescount > $aThread->gotnum) {
//ダウンロードする
fwrite(STDOUT, 'Downloading ' . $aThread->host . '/' . $aThread->bbs . '/' . $aThread->key . PHP_EOL);
$aThread->downloadDat();

//===========================================================
// idxの値を設定、記録
// idxの値を更新
//===========================================================
if ($aThread->rescount) {
if ($idx_lines = FileCtl::file_read_lines($aThread->keyidx, FILE_IGNORE_NEW_LINES)) {
Expand Down

0 comments on commit 9b57274

Please sign in to comment.