Skip to content

Commit

Permalink
Merge pull request #18 from 7Cav/testerb-fix
Browse files Browse the repository at this point in the history
Fix users lacking connected account
  • Loading branch information
SyniRon authored Jan 8, 2025
2 parents 7c9fe8b + aba9570 commit 38fd641
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion proto/milpacs.proto
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import "protoc-gen-openapiv2/options/annotations.proto";
// These annotations are used when generating the OpenAPI file.
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
info: {
version: "1.1.2";
version: "1.1.3";
};
external_docs: {
url: "https://github.com/7cav/api";
Expand Down
2 changes: 1 addition & 1 deletion xenforo/connectedAccounts.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package xenforo

const (
ConnectedAccountJoin = "JOIN xf_user_connected_account on xf_user_connected_account.user_id = xf_nf_rosters_user.user_id"
ConnectedAccountJoin = "LEFT JOIN xf_user_connected_account on xf_user_connected_account.user_id = xf_nf_rosters_user.user_id"
)

type ConnectedAccount struct {
Expand Down

0 comments on commit 38fd641

Please sign in to comment.