We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6ba781 commit f49bd87Copy full SHA for f49bd87
1 file changed
OGParser/src/main/java/com/kedia/ogparser/OpenGraphParser.kt
@@ -43,7 +43,6 @@ class OpenGraphParser(
43
fun parse() = launch {
44
val result = fetchContent()
45
result?.let {
46
- Log.d("TAG!!!!", "called here from thread ${Thread.currentThread().name}")
47
listener.onPostResponse(it)
48
}
49
@@ -103,8 +102,6 @@ class OpenGraphParser(
103
102
return@withContext null
104
105
106
- Log.d("TAG!!!!", openGraphResult.toString())
107
-
108
if (openGraphResult!!.title.isEmpty() && openGraphResult!!.description.isEmpty() && showNullOnEmpty) {
109
launch(Dispatchers.Main) {
110
listener.onError("Null or empty response from the server")
0 commit comments