This repository has been archived by the owner on Dec 20, 2021. It is now read-only.
Tags: CodedOre/cawbird
Tags
Fix parsing error in app-data <em> tags *should* be allowed (https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-description) but nothing likes them. Even if the <description> tag is explicitly included.
Closes IBBoard#51: Fix segfaults with function definition The Open Build Server was building PIE builds. These crashed. Local dev builds were non-PIE and didn't crash. Apparently, Vala/C will happily compile and let you reference a function that wasn't defined in the header. And then it'll crash when it's position independent (presumably because it can't guarantee where the function will be in the same way). By defining the get_quoted_medias function in the header file, we fix the crash.
Indirectly access errordomain code Older (Vala < 0.44) builds were failing on OBS because of "invalid right operand" (`Rest.Proxy.Error.SSL`) https://gitlab.gnome.org/GNOME/vala/issues/732 suggests that we need to access the codes indirectly (at least for older versions)