PlusEMU Error

Status
Not open for further replies.

JynX

Posting Freak
Feb 6, 2016
710
438
Hello DevBest,
I've had this issue a few times and really never figured out how or why it occurred and if there was even a fix for it. I've been searching quite a bit with various search terms that I believed would help me find something here or on the rival forum. Nothing of which I could find. The emulator worked for 3-4 days and then upon shutting it down it gave the following error which you can see below.
2a86a243c9204181b5e640310afb41e6.png
If anyone has an idea on where I can look to solve this or even has the fix itself I would appreciate it quite a lot. Thanks in advance and my apologies for such a dumb question. :)
 

Sledmore

Chaturbate Livestreamer
Staff member
FindRetros Moderator
Jul 24, 2010
5,195
3,906
Can you upload ModerationManager.cs?

The issue is that something isn't parsing correctly.
 

Sledmore

Chaturbate Livestreamer
Staff member
FindRetros Moderator
Jul 24, 2010
5,195
3,906
Go to line 120 and change this:
PHP:
double expires = (double)dRow["expire"];
To:
PHP:
double expires = Converto.ToDouble(dRow["expire"]);
 

JynX

Posting Freak
Feb 6, 2016
710
438
Go to line 120 and change this:
PHP:
double expires = (double)dRow["expire"];
To:
PHP:
double expires = Converto.ToDouble(dRow["expire"]);
Not to sound rude but I did
PHP:
double expires = (double)dRow["expire"];
To:
PHP:
double expires = Convert.ToDouble(dRow["expire"]);
as yours gave an error, but never the less thank you so much!
 

Sledmore

Chaturbate Livestreamer
Staff member
FindRetros Moderator
Jul 24, 2010
5,195
3,906
Yup, I accidentally put a "Converto" instead of "Convert", please mark my post as the answer. :)

No problem.
 
Status
Not open for further replies.

Users who are viewing this thread

Top