I've been having some trouble using the Quest Indicator. The "Offer" indicator would pop back even after I accepted the quest already. After some digging in the code, I figured that it came from this line from QuestIndicatorManager.cs :

It seemed to think that this quest was still "WaitingToStart" even though the quest was already started. After checking, I saw some discrepancies between the current Quest State when I check the quest from the Quest Giver gameobject, and when I check the quest from the Quest Journal gameobject.
When I check the Quest after selecting the Quest Journal object (which is my main character), this is shown in the quest editor, showing that the quest is "Active" and not "WaitingToStart":

But, when I select the quest giver (A character named Molly, in this case) and click on the quest in the Quest Giver component, this is shown in the quest editor, showing the status as "WaitingToStart":

This lead me to think that I was doing something wrong when giving the quest. I've been using two different ways to give quest to the player:
1) Accepting the quest on the Quest Board.

In that case, I create an object called Notice that has the quest as a parameter. I get the quest by using the line :
Quest q = QuestMachine.GetQuestInstance(QuestID);
2) Using LuaAddQuest in Dialogue System when talking to a NPC that is ready to offer the quest.

In this case, I check that the quest is still "WaitingToStart", because the player might have already taken it on the quest board before talking to the NPC.
That's pretty much it.
I think it's probably something simple that I didn't understand about the proper way to give the quest to the player.
Hopefully, you can help me out.
Thanks.