1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-23 01:44:22 +00:00

LV2 Host: Properly map non-ASCII IRIs to URIDs

This commit is contained in:
reuk 2022-05-17 18:00:38 +01:00
parent 8d1b91daee
commit b41beb3767
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11

View file

@ -658,7 +658,7 @@ public:
const auto index = strings.size();
indices.insert (it, index);
strings.emplace_back (uri);
strings.push_back (uriString);
return static_cast<LV2_URID> (index + 1);
}