diff --git a/app/src/main/java/com/owncloud/android/ui/fragment/share/RemoteShareRepository.kt b/app/src/main/java/com/owncloud/android/ui/fragment/share/RemoteShareRepository.kt index 8a99904a9f..302e4d0ac5 100644 --- a/app/src/main/java/com/owncloud/android/ui/fragment/share/RemoteShareRepository.kt +++ b/app/src/main/java/com/owncloud/android/ui/fragment/share/RemoteShareRepository.kt @@ -31,12 +31,12 @@ class RemoteShareRepository( val result = operation.execute(client) if (result.isSuccess) { - Log_OC.d(tag, "Successfully refreshed shares for the specified remote path."); + Log_OC.d(tag, "Successfully refreshed shares for the specified remote path.") } else { Log_OC.w( tag, "Failed to refresh shares for the specified remote path. An error occurred during the operation." - ); + ) } } }