Skip to content

Commit b17e6ac

Browse files
committed
Fix typo
1 parent 301f2a6 commit b17e6ac

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

SCrawler/API/Base/UserDataBase.vb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ BlockNullPicture:
349349
Friend ReadOnly Property LVIKey As String Implements IUserData.LVIKey
350350
Get
351351
If Not _IsCollection Then
352-
Return $"{Site.ToString.ToUpper.Substring(0, 1)}_{Name}"
352+
Return $"{Site.ToString.ToUpper}_{Name}"
353353
Else
354354
Return $"CCCC_{CollectionName}"
355355
End If
@@ -603,6 +603,7 @@ BlockNullPicture:
603603
Case Sites.Reddit : URL = $"https://www.reddit.com/{IIf(IsChannel, "r", "user")}/{Name}/"
604604
Case Sites.Twitter : URL = $"https://twitter.com/{Name}"
605605
Case Sites.Instagram : URL = $"https://www.instagram.com/{Name}/"
606+
Case Sites.RedGifs : URL = $"https://www.redgifs.com/users/{Name}/"
606607
Case Else : MsgBoxE($"Site [{Site}] opening not implemented", MsgBoxStyle.Exclamation)
607608
End Select
608609
If Not URL.IsEmptyString Then Process.Start(URL)

0 commit comments

Comments
 (0)