Twitter Users to tag not coming up in browser
-
Hi
I tried to tag users by clicking on "Who's in this photo" and typing the correct username but the user is not coming up in the dropdown list : http://storage1.static.itmages.com/i/17/0719/h_1500483577_8210436_6e83f1c8ed.pngWhen i tried to do with my normal browser it is coming up : http://storage5.static.itmages.com/i/17/0719/h_1500483679_2119414_f6bf6fa01b.png
So i think problem is with browser used in BAS so i enabled flash from browser settings but it didn't worked, please help me with any solutions...
-
@niceusername said in Twitter Users to tag not coming up in browser:
from browser
Hi you can try to increase the typing speed may to 200, because if u do manually js loader of twitter will be waiting one by one character and showing all suggestion.
Regards.
-
Hi
Thanks for the suggestion but it didn't worked, i tried with 200, 300 even 5000 milliseconds. I need to complete this project, please help @administrators
-
@niceusername It don't work in latest chrome for me
-
Thanks a lot!
-
@support I just updated the chrome to latest version and checked on latest chrome and tag feature is working...
-
Explanation:
Twitter relies on indexedDb, to store cache of user searches localy. BAS supports indexedDb, but has also old api webkitIndexedDB(which is removed it latest chrome versions), and seems like this old api conflicts with new one. It looks like twitter bug, which is present only on older chrome versions. It will work in BAS after chrome update, meanwhile you can use following workaround:
Solution:
Run "Execute On Every Page Load In Browser" with param
delete window.indexedDB; delete window.webkitIndexedDB;
before any twitter activity(including page load).
-
@support Thanks! You are awesome pro!