Assuming accounts.db has the same tables as the Seafile Client, you could also use this approach
- Stop Seadrive
- Download sqlite-tools-win32 from https://www.sqlite.org/download.html
- sqlite3.exe accounts.db
- sqlite> update Accounts set url = ‘https://URL’ where url = ‘http://URL’ ;
HTH!