Skip to content

Commit

Permalink
Fixed bugs with error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
frikky committed May 22, 2024
1 parent 3e0099c commit 628e28d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion db-connector.go
Original file line number Diff line number Diff line change
Expand Up @@ -6172,7 +6172,7 @@ func fixAppAppend(allApps []WorkflowApp, innerApp WorkflowApp) ([]WorkflowApp, W

func GetUserApps(ctx context.Context, userId string) ([]WorkflowApp, error) {
wrapper := []WorkflowApp{}
var err error
//var err error

cacheKey := fmt.Sprintf("userapps-%s", userId)
if project.CacheDb {
Expand Down
2 changes: 1 addition & 1 deletion oauth2.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package shuffle
import (
"bytes"
"context"
"regexp"
//"regexp"
"crypto/sha256"
"encoding/base64"
"encoding/json"
Expand Down

0 comments on commit 628e28d

Please sign in to comment.