diff --git a/pvr.vdr.vnsi/changelog.txt b/pvr.vdr.vnsi/changelog.txt index cd72c937..4f192e77 100644 --- a/pvr.vdr.vnsi/changelog.txt +++ b/pvr.vdr.vnsi/changelog.txt @@ -1,3 +1,6 @@ +v22.0.0 +- Initial release for Piers (PVR Add-on API v8.4.0) + v21.1.1 - Translations updates from Weblate - af_za, am_et, ar_sa, ast_es, az_az, be_by, bg_bg, bs_ba, ca_es, cs_cz, cy_gb, da_dk, de_de, el_gr, en_au, en_nz, en_us, eo, es_ar, es_es, es_mx, et_ee, eu_es, fa_af, fa_ir, fi_fi, fo_fo, fr_ca, fr_fr, gl_es, he_il, hi_in, hr_hr, hu_hu, hy_am, id_id, is_is, it_it, ja_jp, ko_kr, lt_lt, lv_lv, mi, mk_mk, ml_in, mn_mn, ms_my, mt_mt, my_mm, nb_no, nl_nl, pl_pl, pt_br, pt_pt, ro_ro, ru_ru, si_lk, sk_sk, sl_si, sq_al, sr_rs, sr_rs@latin, sv_se, szl, ta_in, te_in, tg_tj, th_th, tr_tr, uk_ua, uz_uz, vi_vn, zh_cn, zh_tw diff --git a/src/ClientInstance.cpp b/src/ClientInstance.cpp index 142ee017..57b5b4b6 100755 --- a/src/ClientInstance.cpp +++ b/src/ClientInstance.cpp @@ -915,7 +915,6 @@ PVR_ERROR CVNSIClientInstance::GetRecordingEdl(const kodi::addon::PVRRecording& vrp.init(VNSI_RECORDINGS_GETEDL); vrp.add_U32(std::stoi(recording.GetRecordingId())); - int size = 0; auto vresp = ReadResult(&vrp); if (vresp == nullptr) @@ -927,7 +926,7 @@ PVR_ERROR CVNSIClientInstance::GetRecordingEdl(const kodi::addon::PVRRecording& return PVR_ERROR_NO_ERROR; } - while (vresp->getRemainingLength() >= 2 * 8 + 4 && size++ < PVR_ADDON_EDL_LENGTH) + while (vresp->getRemainingLength() >= 2 * 8 + 4) { kodi::addon::PVREDLEntry entry;