Skip to content
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

Fix type-o & add CodeQL #9

Merged
merged 5 commits into from
Sep 2, 2022
Merged

Fix type-o & add CodeQL #9

merged 5 commits into from
Sep 2, 2022

Commits on Sep 1, 2022

  1. Fix type-o in friend interval

    ```ts
    if (!this.fullOfFriends.has(account.token.userXUID))
    					if (!account.isTokenRefreshing)
    						if (this.doingDuplicateFriendCheck) {
    ```
    ->
    ```ts
    if (!(this.fullOfFriends.has(account.token.userXUID) || account.isTokenRefreshing || this.doingDuplicateFriendCheck)) {
    ```
    DJStompZone committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    30c6cc0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1 from DJStompZone/DJStompZone-patch-1

    Fix type-o in friend interval
    DJStompZone committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    3caf8fc View commit details
    Browse the repository at this point in the history
  3. Add CodeQL

    Add CodeQL analysis to build procedure
    github/codeql-action/analyze@v2
    DJStompZone committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    9608e33 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8569f29 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2022

  1. Configuration menu
    Copy the full SHA
    fea1a33 View commit details
    Browse the repository at this point in the history