示例#1
0
        public async Task RefreshFollowerDetails()
        {
            if (!AuthenticationService.Current.IsLoggedIn || User.UserId == AuthenticationService.Current.LoggedInUserId)
            {
                return;
            }

            try
            {
                var response = await _vidMeClient.IsUserFollowingUserAsync(User.UserId, AuthenticationService.Current.LoggedInUserId);

                SetIsFollowedByMe(response);
            }
            catch (Exception ex)
            {
            }
        }