mirror of
https://github.com/gnosygnu/xowa.git
synced 2026-03-02 03:49:30 +00:00
v3.1.3.1
This commit is contained in:
@@ -66,7 +66,7 @@ public class Xoa_maint_mgr implements GfoInvkAble {
|
||||
len = app.Wiki_mgr().Count();
|
||||
Xoa_app_.Usr_dlg().Log_many("", "", "maint.wiki_count; count=~{0}", len);
|
||||
for (int i = 0; i < len; i++) {
|
||||
Xowe_wiki wiki = app.Wiki_mgr().Get_at(i);
|
||||
Xowe_wiki wiki = app.Wiki_mgr().Get_at_or_null(i);
|
||||
Xoa_app_.Usr_dlg().Log_many("", "", "maint.wiki_itm; wiki=~{0}", wiki.Domain_str());
|
||||
Wmf_dump_itm itm = (Wmf_dump_itm)itms_hash.Get_by_bry(wiki.Domain_bry()); if (itm == null) continue;
|
||||
wiki.Maint_mgr().Wmf_dump_date_(itm.Dump_date()).Wmf_dump_done_(itm.Status_tid() == Wmf_dump_itm.Status_tid_complete).Wmf_dump_status_(itm.Status_msg());
|
||||
|
||||
@@ -23,7 +23,7 @@ public class Xoa_maint_wikis_mgr implements GfoInvkAble {
|
||||
public Xowe_wiki Get_at(int i) {
|
||||
if (init) Init();
|
||||
byte[] domain = (byte[])hash.Get_at(i);
|
||||
Xowe_wiki wiki = app.Wiki_mgr().Get_by_key_or_make(domain);
|
||||
Xowe_wiki wiki = app.Wiki_mgr().Get_by_or_make(domain);
|
||||
wiki.Init_assert();
|
||||
return wiki;
|
||||
}
|
||||
@@ -32,7 +32,7 @@ public class Xoa_maint_wikis_mgr implements GfoInvkAble {
|
||||
int len = this.Len();
|
||||
for (int i = 0; i < len; i++) {
|
||||
byte[] domain = (byte[])hash.Get_at(i);
|
||||
Xowe_wiki wiki = app.Wiki_mgr().Get_by_key_or_make(domain);
|
||||
Xowe_wiki wiki = app.Wiki_mgr().Get_by_or_make(domain);
|
||||
wiki.Init_assert();
|
||||
}
|
||||
init = false;
|
||||
|
||||
Reference in New Issue
Block a user