Skip to content

mobileform: Fix url checks in AboutPage

Joshua Goins requested to merge work/redstrate/fix-about-links into master

These checks were supposed to check the length of the string, but didn't work. Now they work as expected.

Before

image

The donateUrl and getInvolvedUrl properties are empty here, but the checks don't work and clicking these buttons end up opening AboutPage.qml in your default text editor 😆

After

Now this is expected behavior, the buttons are gone:

image

The code is slightly improved, de-duplicating some of it and making it all length > 0 checks.

Merge request reports