You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 15, 2025. It is now read-only.
The instagramDl function returns an array of objects where each object contains download_link and thumbnail_link. However, there is an inconsistency in the thumbnail_link values:
The first three objects in the array have valid URLs for thumbnail_link that work correctly.
Starting from the fourth object onward, the thumbnail_link is set to "imgs/loader.gif", which is a placeholder and does not point to a valid resource.
Steps to Reproduce:
Call the instagramDl function with a valid link.
Observe the returned array of objects.
Note that the first three objects have working thumbnail_links.
For objects after the third one, thumbnail_link is "imgs/loader.gif", which does not work.
Expected Behavior:
All objects in the array should have valid and functional thumbnail_links or should handle the case where no valid thumbnail is available gracefully.
Actual Behavior:
Only the first three objects have functional thumbnail_links.
Subsequent objects have a non-functional thumbnail_link pointing to "imgs/loader.gif".
Suggested Solution:
Investigate why the thumbnail_link becomes "imgs/loader.gif" after the third object.
Ensure that instagramDl returns valid thumbnail_links for all objects or provide a proper fallback mechanism.
Additional Information:
Please let me know if further details or examples are needed to assist in resolving this issue.
Description:
The
instagramDlfunction returns an array of objects where each object containsdownload_linkandthumbnail_link. However, there is an inconsistency in thethumbnail_linkvalues:thumbnail_linkthat work correctly.thumbnail_linkis set to"imgs/loader.gif", which is a placeholder and does not point to a valid resource.Steps to Reproduce:
instagramDlfunction with a valid link.thumbnail_links.thumbnail_linkis"imgs/loader.gif", which does not work.Expected Behavior:
thumbnail_links or should handle the case where no valid thumbnail is available gracefully.Actual Behavior:
thumbnail_links.thumbnail_linkpointing to"imgs/loader.gif".Suggested Solution:
thumbnail_linkbecomes"imgs/loader.gif"after the third object.instagramDlreturns validthumbnail_links for all objects or provide a proper fallback mechanism.Additional Information:
Please let me know if further details or examples are needed to assist in resolving this issue.