Odd switching of paired folders with left and right of FFS batch

Get help for specific problems
Posts: 15
Joined: 20 Sep 2017

SipriusPT

Hello,

I am trying to set a FFS batch with this set at paired folders to mirror the remote folder in Disk1 with a local folder:
<?xml version="1.0" encoding="UTF-8"?>
<FreeFileSync XmlFormat="8" XmlType="BATCH">
    <MainConfig>
        <Comparison>
            <Variant>TimeAndSize</Variant>
            <Symlinks>Exclude</Symlinks>
            <IgnoreTimeShift/>
        </Comparison>
        <SyncConfig>
            <Variant>Mirror</Variant>
            <DetectMovedFiles>false</DetectMovedFiles>
            <DeletionPolicy>RecycleBin</DeletionPolicy>
            <VersioningFolder Style="Replace"/>
        </SyncConfig>
        <GlobalFilter>
            <Include>
                <Item>*</Item>
            </Include>
            <Exclude>
                <Item>/.fseventsd/</Item>
                <Item>/.Spotlight-V100/</Item>
                <Item>/.Trashes/</Item>
                <Item>*/.DS_Store</Item>
                <Item>*/._.*</Item>
            </Exclude>
            <TimeSpan Type="None">0</TimeSpan>
            <SizeMin Unit="None">0</SizeMin>
            <SizeMax Unit="None">0</SizeMax>
        </GlobalFilter>
        <FolderPairs>
            <Pair>
                <Left>/Volumes/Disk1/A</Left>
                <Right>/Users/admin/Documents/A</Right>
            </Pair>
        </FolderPairs>
        <IgnoreErrors>true</IgnoreErrors>
        <PostSyncCommand Condition="Completion"/>
    </MainConfig>
    <BatchConfig>
        <ErrorDialog>Show</ErrorDialog>
        <PostSyncAction>Exit</PostSyncAction>
        <RunMinimized>true</RunMinimized>
        <LogfileFolder Limit="120">/Users/admin/Documents/RTS_Logs/</LogfileFolder>
    </BatchConfig>
</FreeFileSync>
But I am not getting why after I create the batch file and use it one time, in the second time it switchs sides without warning.

I am running FFS 9.6 on a MacOS High Sierra.

Anyone here have experienced this issue?