카카오톡 링크공유 시 오류팝업 발생관련 문의 드립니다

안녕하세요.
카카오톡으로 링크공유 호출 시 카카오톡 채팅방에 링크가 표시된 후에
"Failed to send TalkShare data." 라는 Alert Dialog가 발생되는 경우가 있습니다.

혹시 해당 팝업이 카카오톡에서 표시하는 팝업인지 문의드리며,
만약 맞다면 어느 경우에 발생될 수 있는지 문의 드립니다.

호출코드는 다음과 같습니다.

            Intent intent = new Intent(Intent.ACTION_SEND);
            intent.setType("text/plain");
            intent.setComponent(name);
            intent.addCategory(Intent.CATEGORY_DEFAULT);
            intent.putExtra(Intent.EXTRA_TEXT, data);
            startActivity(intent);

감사합니다.
좋은 하루 되세요.