Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if (URL.endswith(".GIF".ToLower()))
- {
- icon=gifIcon;
- }
- else if (URL.contains("imgur.com".ToLower()) OR URL.endswith(".png".ToLower()) OR URL.endswith(".jpg".ToLower()) OR URL.endswith(".jpeg".ToLower)))
- {
- icon=imageIcon;
- }
- else if (URL.contains("youtube.com".ToLower()) OR URL.contains("youtu.be".ToLower()))
- {
- icon=videoIcon;
- }
- else if (URL.contains("play.google.com/store".ToLower()))
- {
- icon=playIcon;
- }
- else if (URL.contains("reddit.com".ToLower() OR URL.contains("redd.it".ToLower())
- {
- icon=redditIcon;
- }
- else
- {
- icon=webIcon;
- }
- setIcon(icon);
Advertisement
Add Comment
Please, Sign In to add comment