Skip to content

Commit

Permalink
[Release] fix: credentials bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Josscoder committed Apr 10, 2023
1 parent 175da79 commit 6847ed2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/josscoder/dailyreward/DailyRewardPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public void onEnable() {

MongoDBProvider.make(config.getString("mongodb.host", "localhost"),
config.getInt("mongodb.port", 27017),
config.getString("mongodb.database"),
config.getString("mongodb.username"),
config.getString("mongodb.database"),
config.getString("mongodb.password", "password")
);
SessionFactory.make();
Expand Down

0 comments on commit 6847ed2

Please sign in to comment.