antonkomarev / github-profile-views-counter

It counts how many times your GitHub profile has been viewed. Free cloud micro-service.
https://komarev.com/sources/github-profile-views-counter
MIT License
4.06k stars 369 forks source link

There occurs a problem with the display of the icon #79

Closed lim-yoona closed 1 year ago

lim-yoona commented 1 year ago

Description

I have been using github-profile-views-counter to count my page views for a long time. Yesterday I discovered that there was an error in the icon display.

Detail

image

The code I use

<p align="center">
  <a href="https://github.com/lim-yoona">
    <img src="https://komarev.com/ghpvc/?username=limyoona&color=blue&style=flat)" />
  </a>
</p>

and using markdown code also has the same effect.

antonkomarev commented 1 year ago

Duplicate. Will notify about resolution here:

igorskyflyer commented 1 year ago

The code I use

<p align="center">
  <a href="https://github.com/lim-yoona">
    <img src="https://komarev.com/ghpvc/?username=limyoona&color=blue&style=flat)" />
  </a>
</p>

and using markdown code also has the same effect.

@lim-yoona

Sidenote: when the issue is resolved and you bring back the code, make sure to fix a typo in the URL.

I checked your README's commit history 01dea8067a2a5b4efe0364f1644ea39fd7350a0c, the src attribute of the <img> tag should be:

https://komarev.com/ghpvc/?username=limyoona&color=blue&style=flat

and not

https://komarev.com/ghpvc/?username=limyoona&color=blue&style=flat)

You have a redundant parenthesis at the end of the URL. 😉