-
Notifications
You must be signed in to change notification settings - Fork 787
Repository of the Day #2531
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Repository of the Day #2531
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -4,6 +4,7 @@ | |||||||||
|
|
||||||||||
| [](https://discord.gg/5Hus6fM) | ||||||||||
|
|
||||||||||
| <a href="https://trendshift.io/repositories/11301" target="_blank"><img src="https://trendshift.io/api/badge/repositories/11301" alt="recloudstream%2Fcloudstream | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a> | ||||||||||
|
||||||||||
| <a href="https://trendshift.io/repositories/11301" target="_blank"><img src="https://trendshift.io/api/badge/repositories/11301" alt="recloudstream%2Fcloudstream | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a> | |
| <a href="https://trendshift.io/repositories/11301" target="_blank"><img src="https://trendshift.io/api/badge/repositories/11301" alt="Trendshift badge for recloudstream/cloudstream repository" style="width: 250px; height: 55px;" width="250" height="55"/></a> |
Copilot
AI
Feb 25, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The inline style attribute should be removed. The width and height are already specified using HTML attributes, making the style attribute redundant. Additionally, inline styles can be problematic for users who apply custom stylesheets or use reader modes. The HTML width and height attributes are sufficient for specifying image dimensions.
| <a href="https://trendshift.io/repositories/11301" target="_blank"><img src="https://trendshift.io/api/badge/repositories/11301" alt="recloudstream%2Fcloudstream | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a> | |
| <a href="https://trendshift.io/repositories/11301" target="_blank"><img src="https://trendshift.io/api/badge/repositories/11301" alt="recloudstream%2Fcloudstream | Trendshift" width="250" height="55"/></a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The use of
target="_blank"withoutrel="noopener noreferrer"creates a security vulnerability. When opening links in a new tab without these attributes, the new page gains access to the window.opener property, which can be exploited for phishing attacks or other malicious purposes. Addrel="noopener noreferrer"to the anchor tag to prevent this security issue.