What icon is this
- By Eyrovia
- Ask a question
- 3 Replies
Im having problems trying to figure out what app has this notification icon. Thank you 

Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

<script src="https://utteranc.es/client.js"
repo="{{ site.Params.comments }}"
issue-term="title"
theme="github-light"
crossorigin="anonymous"
async>
</script>

if (mOpenedItems.size == 0) break //**************************************ERROR**************
// Disallow our parent Views to intercept the touch events so long as there is
// at least one item view in the open or being closed state.
requestParentDisallowInterceptTouchEvent()
if (mFullyOpenedItem != null) {
mHasItemFullyOpenOnActionDown = true
if (mActiveItem === mFullyOpenedItem) {
resolveActiveItemMenuBounds()
// If the user's finger downs on the completely opened itemView's menu area,
// do not intercept the subsequent touch events (ACTION_MOVE, ACTION_UP, etc.)
// as we receive the ACTION_DOWN event.
// If the user's finger downs on the fully opened itemView but not on
// its menu, then we need to intercept them.
if (mActiveItemMenuBounds.contains(mDownX, mDownY)) {
break //*******************************ERROR*****************************************
} else if (mActiveItemBounds.contains(mDownX, mDownY)) {
return true
}
}
// If 1) the fully opened itemView is not the current one or 2) the user's
// finger downs outside of the area in which this view displays the itemViews,
// make the itemView's menu hidden and intercept the subsequent touch events.
releaseItemViewInternal(mFullyOpenedItem, itemScrollDuration)
}