# # # patch "src/model/GetAttributes.cpp" # from [6646ac15f25d25b19ba253f872d63c240e759331] # to [c48bcbc5d8afbe7f40fc8912eadb631f33371d8b] # # patch "src/model/Tags.cpp" # from [a7caf48663871fe5e12a75451dafd8c6f95d7f0a] # to [3b7abbbba1916ce33340438f57d6653a29b460c1] # ============================================================ --- src/model/GetAttributes.cpp 6646ac15f25d25b19ba253f872d63c240e759331 +++ src/model/GetAttributes.cpp c48bcbc5d8afbe7f40fc8912eadb631f33371d8b @@ -87,19 +87,6 @@ void GetAttributes::processTaskResult(co { StanzaEntry entry = stanza.at(j); - if (i == 0 && j == 0) - { - if (entry.sym != "format_version") - { - W("First entry in first stanza should be used format version."); - } else - if (entry.vals.at(0) != "1") - { - W("Format version is unequal to '1' - newer interface version?"); - } - break; - } - // we're now only interested in stanzas starting with a "attr" entry if (j == 0 && entry.sym != "attr") break; ============================================================ --- src/model/Tags.cpp a7caf48663871fe5e12a75451dafd8c6f95d7f0a +++ src/model/Tags.cpp 3b7abbbba1916ce33340438f57d6653a29b460c1 @@ -71,7 +71,8 @@ void Tags::processTaskResult(const Monot { StanzaEntry entry = stanza.at(j); - // we're now only interested in stanzas starting with a "tag" entry + // we're now only interested in stanzas + // starting with a "tag" entry if (j == 0 && entry.sym != "tag") break; isItem = true;