Line 15 of README.md carries a SonarQube badge link pointing at https://sonarcloud.io/dashboard?id=io.zold%3java-api. The %3 sequence is an incomplete percent-encoding; URL parsers either read it as the character ; or pass the literal %3 through, so the resulting id parameter never equals the SonarCloud project key io.zold:java-api. Clicking the badge therefore lands on an empty SonarCloud page rather than the project dashboard.
The correct encoding for : is %3A. Replace id=io.zold%3java-api with id=io.zold%3Ajava-api on line 15 of README.md.
Line 15 of
README.mdcarries a SonarQube badge link pointing athttps://sonarcloud.io/dashboard?id=io.zold%3java-api. The%3sequence is an incomplete percent-encoding; URL parsers either read it as the character;or pass the literal%3through, so the resultingidparameter never equals the SonarCloud project keyio.zold:java-api. Clicking the badge therefore lands on an empty SonarCloud page rather than the project dashboard.The correct encoding for
:is%3A. Replaceid=io.zold%3java-apiwithid=io.zold%3Ajava-apion line 15 ofREADME.md.