opt-natter / discord-mybb-sync

A MyBB Plugin to syncronise MyBB Groups with Discord Roles
MIT License
11 stars 3 forks source link

Doesnt updated roles in 19 digits discord id accounts #32

Open rmtninja opened 1 year ago

rmtninja commented 1 year ago

New accounts are coming with 19 digits on user IDs. It seems this line needs to be updated:

define("DRS_DISCORD_ID_FORMAT_new", '\d{18}'); // Discord ID check

The issue is that the plugin updates 18-digit accounts but ignores 19 digits.

Tried some fixes like: define("DRS_DISCORD_ID_FORMAT_new", '.'); // Discord ID check define("DRS_DISCORD_ID_FORMAT_new", ''); // Discord ID check /\d{18,19}/ define("DRS_DISCORD_ID_FORMAT_new", '\d{19}|\d{18}'); // Discord ID

Suggestion: Correct if possible for 18-19 digits (let's ignore FORMAT_new) and make the bot work for any Discord IDs. Use \d{18,19} on the RegEx Discord ID profile field.