SonarQube badge URL in README.md uses malformed %3 escape instead of %3A

Open Beginner friendly
#133 1 comment 1 reaction 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
1/5
Estimated time
Under an hour
Newbie friendliness
88/100
Issue type
Documentation
Clarity
Clearly specified
Activity status
Quiet
Tech stack
java
Domain
documentation

Research direction

Open line 15 of README.md and inspect the SonarQube badge URL. Replace the malformed percent escape with the specified encoding for the colon, then verify that the badge link targets the io.zold:java-api SonarCloud dashboard.

Written by the indexing model from the issue text.

Description

bug good first issue

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.

Dominant language
Java
Stars
22
Forks
14
PR merge metrics
No merged PRs in 30d

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from zold-io/java-api

All issues in zold-io/java-api

Similar issues

More Java issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.