quran / quran.com-api

Quran.com content APIs
https://api-docs.quran.foundation/docs/category/content-apis
MIT License
924 stars 192 forks source link

typo in author name for Tafheem ul Quran #635

Open bug-author opened 1 year ago

bug-author commented 1 year ago

AoA. I was on Quran.com and I noticed that the author name for Tafhim Ul Quran has some typos. It should be Syed Abul A'la Maududi not Abu Ali.

image

The data comes from this request at this endpoint https://api.qurancdn.com/api/qdc/resources/translations?language=en. The issue lies in id 97 of response.


{
   "translations":[
      "...",
      {
         "id":97,
         "name":"Tafheem e Qur'an - Syed Abu Ali Maududi",
         "author_name":"Syed Abu Ali Maududi",
         "slug":"ur-al-maududi",
         "language_name":"urdu",
         "translated_name":{
            "name":"Tafheem e Qur'an - Syed Abu Ali Maududi",
            "language_name":"english"
         }
      },
      "..."
   ]
}

I spent quite some time going through the codebase for Quran.com and quran.com-api but I haven't been able to find and fix the issue. (probably because I have no experience with Ruby, my only guess is that the data comes from db which isn't part of the codebase)