Forward to "my friends who haven't seen this yet" just forwards things to all friends. Always.
It would be really nice if this actually worked. Am I just doing something wrong? It doesn't matter if I'm forwarding my post or a post of a friend, it just forwards it to everyone.
3
people have this problem
I have this problem, too!
Tell me when someone solves it.
The more people who report this problem, the more it gets noticed.
The more people who report this problem, the more it gets noticed.
-
Inappropriate?Yes, there is a problem with this, but it's not a simple fix. We'll look into it. Thanks for posting the bug.
-
Inappropriate?no offence, but how is that not simple?
take your set of people who you have been given that message (set a). Next take your set of friends (set b). Now remove any person in list a from list b.
Python makes that rediculously easy:
# turn list of user id's who have already seen the note into a set
setA = set([1,2,3,4])
# turn list of my friends into a set
setB = set([2,4,6,7])
# Now find all of my friends who have not seen the note
set C = setB - setA
# returns: set([8,6])
And if that looks borked, you can find the code at http://pastie.caboo.se/96861
Loading Profile...



EMPLOYEE

