To date, there are about 2800 submissions with a duplicate version string (the version number). 16 of these affected webextensions [1].
We should resolve these duplicates so we can make the version string unique (per add-on).
[1] Query for reference:
select
v.addon_id, v.version, count(v.id)
from versions v
where v.id in (
select f.version_id
from files f
where f.is_signed = 1 and f.is_webextension = 1)
group by v.addon_id, v.version having count(v.id) > 1;
To date, there are about 2800 submissions with a duplicate version string (the version number). 16 of these affected webextensions [1].
We should resolve these duplicates so we can make the version string unique (per add-on).
[1] Query for reference: