4.05 To 4.10 - Profile Fails To Load

The best solution for finding and removing duplicate files.
Post Reply
laurin1
Posts: 6
Joined: Sun Dec 17, 2017 1:53 pm

4.05 To 4.10 - Profile Fails To Load

Post by laurin1 »

I just upgraded from 4.05 to 4.10 and now I get an error on trying to load my profile:

Error loading Profile: Conversion from string "False" to type 'Integer' is not valid.
error.JPG
laurin1
Posts: 6
Joined: Sun Dec 17, 2017 1:53 pm

Re: 4.05 To 4.10 - Profile Fails To Load

Post by laurin1 »

Well, I fixed it by using a diff tool. This setting is now expecting an int instead of bool(?, a string of False anyway):

<Setting>
<Setting_Name>Check_Aud_DataOnly</Setting_Name>
<Setting_Value>False</Setting_Value>
</Setting>

Changed it (and copied other settings from a test file) and it's working.
User avatar
DigitalVolcano
Site Admin
Posts: 1717
Joined: Thu Jun 09, 2011 10:04 am

Re: 4.05 To 4.10 - Profile Fails To Load

Post by DigitalVolcano »

Thanks, and sorry about this!
4.1.0 shipped with this bug when loading old profiles - it will be fixed in 4.1.1, but for now your fix works

The profiles can be edited in Notepad:

Change the setting value for "Check_Aud_DataOnly" to a number. False=0, True=1.

Code: Select all

  <Setting>
    <Setting_Name>Check_Aud_DataOnly</Setting_Name>
    <Setting_Value>0</Setting_Value>
  </Setting>
laurin1
Posts: 6
Joined: Sun Dec 17, 2017 1:53 pm

Re: 4.05 To 4.10 - Profile Fails To Load

Post by laurin1 »

Thanks. I just saw this - for some reason I did not get a notification of the reply.
Post Reply